Das135
09/30/2020, 9:57 AMmutation {
deleteObj1(where){
affectedRows
}
deleteObj2(where){
affectedRows
}
deleteObj3(where){
affectedRows
}
deleteObj4(where){
affectedRows
}
}
If order of executed functions will change, there can be thrown foreign key constraint condition -> I need to execute mutations like DELETE CASCADE...Lenny
09/30/2020, 2:35 PMDariusz Kuc
09/30/2020, 5:10 PMgraphql-kotlin-spring-server
then by default yes they will execute sequentially, that being said - as was pointed above I’d highly recommend to refactor your schema to expose single mutation that handles all of thatChris Voy
10/06/2020, 6:51 AM