Hello everyone Can I use `dataProxy` previewFeatur...
# orm-help
o
Hello everyone Can I use
dataProxy
previewFeature and
$transaction
API Confused because of Prisma 3.8 update:
Copy code
dataProxy and interactiveTransactions are now mutually exclusive
Before Prisma 3.8.0, Prisma queries would fail whenever the Data Proxy and interactive transactions Preview features were used together
y
to me it reads like they never worked together, but now instead of failing it just enforces the separation 🤔
n
Hey Oleg 👋 The error message means that if from version
3.8.0
if dataProxy and interactiveTransactions preview feature both are enabled then PrismaClient would throw an error, before this release we were not throwing an error. So, you cannot use both the preview features at the same time as of now.