You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A part of the latest GraphQL Specification is string literal descriptions on schema elements. This is meant to aid developers grok a schema when using interactive tools (http://spec.graphql.org/June2018/#sec-Descriptions).
When processing a gql schema using Schema.For(readSchemaGqlFile()), the library throws an error on description fields.
Steps to reproduce
Use a description field in a GQL file
Query {
""" get the things """things: [Thing!]!
}
Expected result
The descriptions should not cause the schema read to throw an exception.
Actual result
An exception is thrown
Environment
Windows 10, Azure Functions,
The text was updated successfully, but these errors were encountered:
Description
A part of the latest GraphQL Specification is string literal descriptions on schema elements. This is meant to aid developers grok a schema when using interactive tools (http://spec.graphql.org/June2018/#sec-Descriptions).
When processing a gql schema using
Schema.For(readSchemaGqlFile())
, the library throws an error on description fields.Steps to reproduce
Use a description field in a GQL file
Expected result
The descriptions should not cause the schema read to throw an exception.
Actual result
An exception is thrown
Environment
Windows 10, Azure Functions,
The text was updated successfully, but these errors were encountered: