Prisma Client and Prisma schema features that are currently in Preview
When we release a new Prisma Client or Prisma schema feature, it often starts in Preview so that you can test it and submit your feedback. After we improve the feature with your feedback and are satisfied with the internal test results, we promote the feature to general availability.
For more information, see ORM releases and maturity levels.
The following Preview feature flags are available for Prisma Client and Prisma schema:
To enable a Preview feature, add the feature flag to the generator block in your schema.prisma file. Share your feedback on all Preview features on GitHub.
To enable a Prisma Client Preview feature:
-
Add the Preview feature flag to the
generatorblock:generator client { provider = "prisma-client" output = "./generated" previewFeatures = ["relationJoins"] } -
Re-generate Prisma Client:
-
If you are using Visual Studio Code and the Preview feature is not available in your
.tsfile after generating Prisma Client, run the TypeScript: Restart TS server command.
In the list below, you can find a history of Prisma Client and Prisma schema features that were in Preview and are now in general availability. The features are sorted by the most recent version in which they were promoted to general availability.