Fork me on GitHub
#graphql
<
2020-02-12
>
Joe Corneli10:02:48

> 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.

gklijs11:02:08

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.