hello how can we call another mutation in a mutati...
# orm-help
k
hello how can we call another mutation in a mutation?
t
do you mean to call 2 mutations simultaneously? Or call a nested mutation? Because they do support nested mutations
You can also call another mutation simultaneously, you just have to put it underneath the first one at the same level:
Copy code
mutation doStuff {
   createThing {
     id
   }
   createOtherThing {
     id
   }
}