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
During fuzzy testing I've found out string that makes astparser crash. Here is example of a code:
package main import ( parser "github.com/wundergraph/graphql-go-tools/pkg/astparser" parser2 "github.com/wundergraph/graphql-go-tools/v2/pkg/astparser" ) const stringThatMakesBalaBooom = "union\"\"\"" func main() { parser.ParseGraphqlDocumentString(stringThatMakesBalaBooom) parser2.ParseGraphqlDocumentString(stringThatMakesBalaBooom) }
The text was updated successfully, but these errors were encountered:
Hi @phob0s-pl
Thanks for the report! This is an issue with early reporting that graphql document an invalid Right now it has low-priority
If you are blocked with this issue we could provide guidance on what needs to be fixed in the parser
Thanks, Wundergraph Team
Sorry, something went wrong.
No branches or pull requests
During fuzzy testing I've found out string that makes astparser crash.
Here is example of a code:
The text was updated successfully, but these errors were encountered: