Skip to content

3.2.0

Choose a tag to compare

@release-drafter release-drafter released this 14 Jun 19:54
· 584 commits to master since this release
2109417

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) and SomeObject2(name) data classes.

Patch Changes

  • Upgrade dependencies and run ktlint format (#766) @smyrick

Non-version Changes