-
Notifications
You must be signed in to change notification settings - Fork 259
New issue
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
Bug in the nested queries when working with @graphql #3088
Labels
type: bug
Something isn't working.
Comments
6 tasks
This can be fixed by adding a |
6 tasks
Action required: Issue inactive for 30 days. |
github-actions
bot
added
the
state: inactive
No current action needed/possible; issue fixed, out of scope, or superseded.
label
Dec 2, 2024
@MedHeikelBouzayene Can you try this PR and see if it resolves your use case? |
github-actions
bot
removed
the
state: inactive
No current action needed/possible; issue fixed, out of scope, or superseded.
label
Dec 9, 2024
Yes it does resolve it, thank you |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Prerequisites
Describe the bug
Let's have this schema:
when I send try this query:
that's the query sent to the graphql server: > Body
{ "query": "query { nodeA { name nodeB { name } nodeC } }" }
Expected behavior
That's the query expected to be sent to the graphql server:
{ "query": "query { nodeA { name nodeB { name } nodeC { name } } }" }
The text was updated successfully, but these errors were encountered: