pathom

2025-10-17T18:43:24.996909Z

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?

wilkerlucio 2025-10-17T18:44:34.246279Z

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

2025-10-17T18:46:23.573479Z

ah, that's true. I suspect that preprocessing would be sufficient for my use cases.