graphql

2020-02-12T10:09:48.073900Z

> re: ordering, resolvers are run from the root to the leaves, so the resolvers higher in the graph will run first and can get information in bulk and pass it down to the leaves Thanks! That sounds like it's exactly what's needed for the task I had in mind.

gklijs 2020-02-12T11:07:08.075100Z

Yes, and some leaves might run in parallel which is typically also what you want. But if you have multiple mutations in root they are run in order.