Skip to content

Instantly share code, notes, and snippets.

View Aryk's full-sized avatar

Aryk Grosz Aryk

View GitHub Profile
@Aryk
Aryk / introspection-query.graphql
Created February 21, 2020 09:17 — forked from craigbeck/introspection-query.graphql
Introspection query for GraphQL
query IntrospectionQuery {
__schema {
queryType { name }
mutationType { name }
subscriptionType { name }
types {
...FullType
}
directives {