Skip to contents

This function retrieves the root-level query fields available in the Meetup GraphQL API. These are the entry points for data fetching (e.g., groupByUrlname, event, etc.).

Usage

meetup_schema_queries(schema = meetup_schema())

Arguments

schema

The schema object obtained from meetup_schema().

Value

A tibble with details about each query field, including:

field_name

Name of the query field

description

Human-readable description of the field

args_count

Number of arguments the field accepts

return_type

The GraphQL type returned by this field

Examples

if (FALSE) { # \dontrun{
# List all available queries
queries <- meetup_schema_queries()

# Find group-related queries
queries |>
  dplyr::filter(grepl("group", field_name, ignore.case = TRUE))
} # }