Hello,
The GraphQL Fulfillment Event Create API is used to update the status of deliveries. I am looking for a way to do this update in bulk.
I have tried using a loop to do the updates, but sometimes I get 503 errors with an HTML response saying: “There was a problem loading this website”.
mutation {
fulfillmentEventCreate(input: {
fulfillmentId: "gid://shopify/Fulfillment/${id}",
status: DELIVERED
}) {
userErrors {
field
message
}
}
}
