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
Currently, you can create a GraphQL operation where object arguments can be defined through GraphQL arguments but not through arguments literals.
Syrup seems to strip curly brackets and commas from the object literal.
Syrup
Query with object literal
query NodeQuery { node(complexId: { id: "something", locale: "en" }) { id } }
Produced error
Unterminated argument list starting at line: 3 column: 6 associated with the following input: ✓ query NodeQuery { ✓ __typename 💥 node(complexId: id: "something"locale: "en") { 💥
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Problem
Currently, you can create a GraphQL operation where object arguments can be defined through GraphQL arguments but not through arguments literals.
Syrup
seems to strip curly brackets and commas from the object literal.Examples
Query with object literal
Produced error
The text was updated successfully, but these errors were encountered: