-
-
Notifications
You must be signed in to change notification settings - Fork 475
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
Respect query object field order #612
Comments
Yes, but I think this does not seem to be important? If you really need this, please tell me why. 🙂 |
I do not rely on this behavior, but I was astonished while comparing Juniper with your great implementation. |
@sunli829 while I am also not sure why this might be important, I think it does make sense to follow specification strictly. That's the goal of having spec, isn't it? 😄 There could be tools which might rely on this behavior and it might be tricky to debug why something isn't working in this case. Imagine someone who is using Also, to be honest it breaks my head a bit, when I am working in the playground. Because it's a bit hard to match what I see in the query and what I see in the response. |
You are right, I will support this now. 🙂 |
Released in |
Thanks a lot! |
Description of the feature
According to GraphQL specification the object field order in a query should be respected:
In the current implementation the fields are alphabetically sorted.
The text was updated successfully, but these errors were encountered: