does a prisma.$transaction with 2 updates protect ...
# orm-help
t
does a prisma.$transaction with 2 updates protect from any queries being ran between the 2 updates and getting back a state where only one of the 2 updates is applied?
r
@Temm 👋 It would prevent any updates as the rows would be locked for the duration of the transaction.