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
I have declared the type of an input to be [ENUM], hence I should be able to query it like this:
[ENUM]
query { someField(input: [enumValue]) { ... } }
However it doesn't work, I get the following error message:
{ "errors": [ { "message": "Can't parse argument", "location": { "line": ..., "column": ... } } ] }
Passing an ENUM value as an input works well, passing arrays of string works well, but passing arrays of ENUMs does not.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have declared the type of an input to be
[ENUM]
, hence I should be able to query it like this:However it doesn't work, I get the following error message:
Passing an ENUM value as an input works well, passing arrays of string works well, but passing arrays of ENUMs does not.
The text was updated successfully, but these errors were encountered: