We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the docs for the language section of the module https://graphql.org/graphql-js/language/
There are two undocumented types needed by callers: Document returned by parse() https://graphql.org/graphql-js/language/#parse the AST node (mentioned as value) returned by functions in the visitor argument to visit() https://graphql.org/graphql-js/language/#visit
Document
parse()
visitor
visit()
Also these functions' argument types aren't fully documented: print() - https://graphql.org/graphql-js/language/#print visit() - https://graphql.org/graphql-js/language/#visit
print()
I'm using this module to obtain and manipulate a query AST, so docs for AST types would greatly help :)
Btw, I'm calling this module in a browser context, for a new GraphQL client.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the docs for the language section of the module
https://graphql.org/graphql-js/language/
There are two undocumented types needed by callers:
Document
returned byparse()
https://graphql.org/graphql-js/language/#parse
the AST node (mentioned as value) returned by functions in the
visitor
argument tovisit()
https://graphql.org/graphql-js/language/#visit
Also these functions' argument types aren't fully documented:
print()
- https://graphql.org/graphql-js/language/#printvisit()
- https://graphql.org/graphql-js/language/#visitI'm using this module to obtain and manipulate a query AST, so docs for AST types would greatly help :)
Btw, I'm calling this module in a browser context, for a new GraphQL client.
The text was updated successfully, but these errors were encountered: