diff options
Diffstat (limited to 'spec/fixtures/api/graphql/introspection.graphql')
-rw-r--r-- | spec/fixtures/api/graphql/introspection.graphql | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/spec/fixtures/api/graphql/introspection.graphql b/spec/fixtures/api/graphql/introspection.graphql index 7b712068fcd..6b6de2efbaf 100644 --- a/spec/fixtures/api/graphql/introspection.graphql +++ b/spec/fixtures/api/graphql/introspection.graphql @@ -1,9 +1,15 @@ # pulled from GraphiQL query query IntrospectionQuery { __schema { - queryType { name } - mutationType { name } - subscriptionType { name } + queryType { + name + } + mutationType { + name + } + subscriptionType { + name + } types { ...FullType } @@ -54,7 +60,9 @@ fragment FullType on __Type { fragment InputValue on __InputValue { name description - type { ...TypeRef } + type { + ...TypeRef + } defaultValue } |