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 using a federated graph gateway, variable definitions in the query should be deduplicated.
When sending the following query to the gateway:
query TestQuery($size: Int!){ me { id name profilePicture(size:$size) backgroundImage(size:$size) } }
It sends the following query downstream to the service providing me. Note the duplicated size variable definition.
me
query ($size: Int, $size: Int) { me { id name profilePicture(size: $size) backgroundImage(size: $size) } }
The text was updated successfully, but these errors were encountered:
Should probably done here
Sorry, something went wrong.
@hannesj thanks for the report and the fix!
Successfully merging a pull request may close this issue.
When using a federated graph gateway, variable definitions in the query should be deduplicated.
When sending the following query to the gateway:
It sends the following query downstream to the service providing
me
. Note the duplicated size variable definition.The text was updated successfully, but these errors were encountered: