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
graphql-composer
when
This query:
{ artists { id tags(where: { id: { eq: "1" } }) { id } } }
works fine if run directly on the service:
{ "data": { "artists": [ { "id": "101", "tags": [ { "id": "1" } ] }, { "id": "102", "tags": [] }, { "id": "201", "tags": [] }, { "id": "301", "tags": [] }, { "id": "401", "tags": [] } ] } }
but fails if executed on the composer:
{ "data": { "artists": [ { "id": "101", "tags": [ { "id": "1" } ] }, { "id": "102", "tags": [ { "id": "2" } ] }, { "id": "201", "tags": [] }, { "id": "301", "tags": [] }, { "id": "401", "tags": [] } ] } }
reproducer repo: https://github.com/mikaelkaron/platformatic-graphql-composer/tree/bug/deep-where
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This query:
works fine if run directly on the service:
but fails if executed on the composer:
reproducer repo: https://github.com/mikaelkaron/platformatic-graphql-composer/tree/bug/deep-where
The text was updated successfully, but these errors were encountered: