Hello All, Can we add transaction rollback with gr...
# orm-help
k
Hello All, Can we add transaction rollback with graphql mutation rather than only prisma operation?
r
Hey @Kishan Das 👋 I don’t think that’s possible directly with Prisma. If you use
prisma.$transaction
that will be limited to just the resolver and only for operations that Prisma handles. If you’re doing some other operation outside of Prisma, you would need to handle that in the application logic itself.