github prisma/prisma1 1.18.0
1.18.0 (2018-10-09)

latest releases: 1.34.12, 1.34.11, 1.34.10...
5 years ago

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

Don't miss a new prisma1 release

NewReleases is sending notifications on new releases.