fulfillmentEventCreate Mutation chaining

I was thinking of chaining multiple mutation calls to the fulfillmentEventCreate event together. I am unsure if it is possible to do so, or do I have to make for every fulfillmentEventCreate mutation call a seperate request.

You can do this Mutations | GraphQL

But it doesn’t improve your rate limit usage at all, Shopify will still take 10 points per mutation.
Also I wouldn’t do multiple mutations on the same fulfillment order at the same time, as it could end up with strange results.
Also you’ll need to ensure you check the userErrors of all your mutations :slight_smile:

1 Like

I literally just wanna reduce the total running time, since one run takes ~ 1k of fulfillmentEvent Updates…

Thanks for letting me know :+1:

1 Like