does Pathom (2 or 3) support cascading or batched mutations? like I delete or update an entity and it generates a pile of deletes or updates to other related entities. would that logic have to be part of one big mutation, or can they be split up and batched automatically similar to how batched resolvers work?
for batching you will need one big mutation taking all the inputs, there is no built-in facility for that. but I think you could also implement it yourself doing some pre-processing on the request
ah, that's true. I suspect that preprocessing would be sufficient for my use cases.