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.
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.