github prisma/prisma1 1.18.0-beta
1.18.0-Beta (2018-09-25)

latest releases: 1.34.12, 1.34.11, 1.34.10...
pre-release5 years ago

Changes

  • 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!
    }

Don't miss a new prisma1 release

NewReleases is sending notifications on new releases.