Skip to content

v6.0.0

Compare
Choose a tag to compare
@AhmedElywa AhmedElywa released this 20 Aug 21:00
· 64 commits to main since this release

Breaking changes

Replace your graphql queries into the front end and change.

// for null able relation
- where: { user: { type: { equals: USER } } }
+ where: { user: { is: { type: { equals: USER } } } }

// change relation update id 
- userId: user.id,
+ user: { connect: { id: user.id } },

// change the orderBy for null able fields 
- orderBy: [{ startDate: desc }]
+ orderBy: [{ startDate: { sort: desc } }]

What's Changed

  • Update package.json by @rachelhigley in #291
  • fix(nexus): matches the nexus generated bigint type by @guog in #296
  • Handle @id & @unique with arguments by @f8k8 in #307

New Contributors

  • @rachelhigley made their first contribution in #291
  • @guog made their first contribution in #296
  • @f8k8 made their first contribution in #307

Full Changelog: v5.2.0...v6.0.0