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
Hello,
I am a new user. This issue may be a duplicate issue.
In Graphql Voyager, if you click the root type when there is an empty input type in the schema, an error occurs.
type Query{ pizzas(filter: pizzaFilter = {}): Pizza } type Pizza{ name:String } input pizzaFilter { name: String next: Int total: Int }
Probably because of this. (pizzaFilter = {}) This error does not happen when empty input object is not the default.
type Query{ pizzas(filter: pizzaFilter): Pizza } type Pizza{ name:String } input pizzaFilter { name: String next: Int total: Int }
The text was updated successfully, but these errors were encountered:
Fix crash due to defaultValue being object
f95642b
Fixes #328
Fix crash due to defaultValue being object (#329)
fbc5abb
Successfully merging a pull request may close this issue.
Hello,
I am a new user.
This issue may be a duplicate issue.
In Graphql Voyager, if you click the root type when there is an empty input type in the schema, an error occurs.
Probably because of this. (pizzaFilter = {})
This error does not happen when empty input object is not the default.
The text was updated successfully, but these errors were encountered: