Replies: 2 comments 1 reply
-
what is the use case for this? |
Beta Was this translation helpful? Give feedback.
1 reply
-
Hi there, I'm having a similar issue with enums: I use generated enums to derive lists of options, but as the schema order is not respected the lists order are messed up (e.g. I end up having a Other option in the middle of the list) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This is my User object define:
type User { login: String passworld: String name: String age: Integer }
but the fields order in plugin function schema parmater is:
type User { age: Integer login: String name: String passworld: String }
The order of fields has changed (alphabetically),
Is there any way to keep the original order?
thanks~
Beta Was this translation helpful? Give feedback.
All reactions