graphql-api
graphql-api copied to clipboard
Parsing documents with comments
It's currently not possible to parse documents that contain comments, as in e.g.:
"""
A comment
"""
query T {
}
It is not a valid GraphQL document. Comments start with #. """ is a description and is valid only for the Schema Definition Language.