3.2.0
Minor Changes
-
[client] support different selection sets against same object (#760) @dariuszkuc
- Allow querying same object type with different selection sets, e.g. given schema
type Query { first: SomeObject! second: SomeObject! } type SomeObject { id: Int! name: String! }
- You can now write following queries
query { first { id } second { name } }
- Plugins in turn will generate
SomeObject(id)andSomeObject2(name)data classes.