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 have a problem with the following query :
query OFFER_QUERY($selectedOffer: String) { applicationsCodes permissions(applicationCodes: [$selectedOffer]) applications(applicationCodes: [$selectedOffer]) { code }
when processed by Gateway, the query becomes :
query ($selectedOffer: String, $selectedOffer: String) { applicationsCodes permissions(applicationCodes: [$selectedOffer]) applications(applicationCodes: [$selectedOffer]) { code }
which generates an error because the variable is defined twice.
@apollo/gateway: 0.6.6
Thanks in advance.
The text was updated successfully, but these errors were encountered:
Fixed by #2840, which is included on 0.6.7.
Sorry, something went wrong.
It's working fine now!
Thanks
No branches or pull requests
Hello,
I have a problem with the following query :
when processed by Gateway, the query becomes :
which generates an error because the variable is defined twice.
@apollo/gateway: 0.6.6
Thanks in advance.
The text was updated successfully, but these errors were encountered: