Kenny Tran
09/21/2022, 11:35 AMconst [queryOne, queryTwo] = await prisma.$transaction([])
The transaction will fail if one of them fails but what happens if one of them succeed and the other fails? Will the query that succeeded actually run towards the DB even though the other query failed?Jarupong
09/21/2022, 11:55 AMKenny Tran
09/21/2022, 11:58 AMRaphael Etim
09/21/2022, 1:34 PM