You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Don't you mean the alias name would end up being field__alias in your example.
It preserves the original field name so that it can be obtained on the response to parse it with this library, with the assumption that the alias is there so the field can be queried more than once.
q.withAlias("alias").field();
produces the graphql:
field_alias: field
I'd expect it to produce
alias: field
See startField()
https://github.com/Shopify/graphql_java_gen/blob/master/support/src/main/java/com/shopify/graphql/support/Query.java#L66
The text was updated successfully, but these errors were encountered: