Prisma has a few Preview features that we may want to opt in to (these may eventually be built-in features as well)
Prisma supports DB native JOIN and SELECT DISTINCT as preview features. Without these features being opted-in to, Prisma handles joins and distinct in-memory after the query.
Another preview feature we may want to keep an eye on add strict undefined checks. We may want to opt-in preemptively in case they decide to make it a mainstream feature in the future. (theoretically, it would be a breaking change if they did so, but I don't necessarily trust them to hold to semver...).
Prisma has a few Preview features that we may want to opt in to (these may eventually be built-in features as well)
Prisma supports DB native
JOINandSELECT DISTINCTas preview features. Without these features being opted-in to, Prisma handles joins and distinct in-memory after the query.Another preview feature we may want to keep an eye on add strict undefined checks. We may want to opt-in preemptively in case they decide to make it a mainstream feature in the future. (theoretically, it would be a breaking change if they did so, but I don't necessarily trust them to hold to semver...).