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
when i query
{ hello{ alias1: id alias2: id } }
and submit the map
{ hello{ alias1: "1" alias2: "2" } }
it returns nil for both aliases
Expected result is alias1 :"1" and "alias2": "2"
There is another case... when i query
{ hello{ id alias2: id } }
{ hello{ id: "1" alias2: "2" } }
it returns alias2: "1" and id: "1"
Expected result is id :"1" and "alias2": "2"
both results are wrong!
It may be covered in PR #630 but i have not tested all possible cases
The text was updated successfully, but these errors were encountered:
No branches or pull requests
when i query
and submit the map
it returns nil for both aliases
Expected result is alias1 :"1" and "alias2": "2"
There is another case... when i query
and submit the map
it returns alias2: "1" and id: "1"
Expected result is id :"1" and "alias2": "2"
both results are wrong!
It may be covered in PR #630 but i have not tested all possible cases
The text was updated successfully, but these errors were encountered: