
Search for types in the Meetup GraphQL API schema
Source:R/graphql-introspection.R
meetup_schema_search.RdThis function searches across all types in the schema by name or description. Useful for discovering what data structures are available (e.g., Event, Group, Venue, Member).
Usage
meetup_schema_search(pattern, schema = meetup_schema())Arguments
- pattern
A string pattern to search for in type names and descriptions. The search is case-insensitive.
- schema
The schema object obtained from
meetup_schema().