Hi guys, 1 question when I make a mutation using a...
# prisma-whats-new
e
Hi guys, 1 question when I make a mutation using aliases e.g
Copy code
mutation {
  addFriends1: addFriend(id: 1) {id},
  addFriend2: addFriend(id: 2) {id}
}
in the database query is it executed as 1 transaction or they are executed as 2 independent transactions? Thanks in advance