Skip to contents

This 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().

Value

A tibble with details about matching types:

type_name

Name of the type

kind

GraphQL kind (OBJECT, ENUM, INTERFACE, etc.)

description

Human-readable description

field_count

Number of fields in the type

Examples

if (FALSE) { # \dontrun{
# Find all event-related types
meetup_schema_search("event")

# Find location-related types
meetup_schema_search("location")
} # }