v6.0.0
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