lib/graphql/introspection.rb in graphql-1.13.5 vs lib/graphql/introspection.rb in graphql-1.13.6

- old
+ new

@@ -5,29 +5,32 @@ # The introspection query to end all introspection queries, copied from # https://github.com/graphql/graphql-js/blob/master/src/utilities/introspectionQuery.js <<-QUERY query IntrospectionQuery { __schema { + description queryType { name } mutationType { name } subscriptionType { name } types { ...FullType } directives { name description locations + isRepeatable args#{include_deprecated_args ? '(includeDeprecated: true)' : ''} { ...InputValue } } } } fragment FullType on __Type { kind name description + specifiedByUrl fields(includeDeprecated: true) { name description args#{include_deprecated_args ? '(includeDeprecated: true)' : ''} { ...InputValue