Hey :wave: I have a question, I wonder if Prisma w...
# orm-help
j
Hey 👋 I have a question, I wonder if Prisma will ever support transactions using a callback method instead supplying prisma operations as an array, or by allowing something like:
Copy code
try {

  prisma.$executeRaw("BEGIN")

  code code code
  code

  prisma.$executeRaw("COMMIT")
} catch(e) {
  prisma.$executeRaw("ROLLBACK")
  throw e;
}
r
@José da Mata 👋 Yes it does now 🎉 https://github.com/prisma/prisma/releases/tag/2.29.0
j
@Ryan that is amazing, thank you!
🙌 1