Skip to content

0.10.0

Compare
Choose a tag to compare
@jasonkuhrt jasonkuhrt released this 21 Feb 17:09
· 158 commits to master since this release

Features

BREAKING CHANGES:

  • You must use @prisma/client Preview 22 or higher

  • You must use nexus 0.12.0-rc.13 or higher. This is to support the Nexus Transition

  • GraphQL API consumers will see a change schema as it concerns pagination. Take a look at the pagination docs for technical detail. Here is a before/after example:

    Before:

    type Query {
      users(where: UserWhereInput, skip: Int, after: Int, before: Int, first: Int, last: Int): [User!]!
    }

    After:

    type Query {
      users(where: UserWhereInput, skip: Int, after: UserWhereUniqueInput, before: UserWhereUniqueInput, first: Int, last: Int): [User!]!
    }
    
    input UserWhereUniqueInput {
      id: Int
    }