GraphiQL
What is it
GQL Client Web UI
- Easiest way to explore the schema and craft the query
GraphQL Introspection
Asking GQL to show all available queries
Introspection Query
query IntrospectionQuery { __schema { types { name kind description } } }