Skip to content
This repository has been archived by the owner on Sep 2, 2022. It is now read-only.

1.18.0 (2018-10-09)

Compare
Choose a tag to compare
@mavilein mavilein released this 09 Oct 15:40
· 5336 commits to master since this release

Other

  • BREAKING: one relation fields on a type used to include a where argument. This argument has been removed now as it was not intended to be part of the API in the first place. Here is an example:
    # before the change
    type Todo implements Node {
      id: ID!
      title: String!
      user(where: UserWhereInput): User!
    }
    # after the change
    type Todo implements Node {
      id: ID!
      title: String!
      user: User!
    }