0.27.0
Changelog
-
Supported Prisma version has been bumped to
^5.0.0๐ช -
As it's a breaking change Prisma release, plenty of preview features has been promoted to stable and enabled by default, like
orderByNulls,extendedWhereUniqueandfilteredRelationCount, so please expect breaking changes in your GraphQL API if you haven't used that features yet. -
Generator options like
emitOnlyoromitInputFieldsByDefaultnow supports array-based syntax, so you don't need to use the string-like arrays workaround anymore ๐ Before:emitOnly = "enums,models"After:
emitOnly = ["enums", "models"]