Hey!
I’m doing a bulk mutation call to update product images alt text and it fails randomly. The bulk mutation is updating the alt text for product images. It works 99% of the time - but seeing new errors today. Errors happened twice over 1000’s of successful updates.
<<-'GRAPHQL'
mutation($stagedUploadPath: String!) {
bulkOperationRunMutation(
mutation: "mutation call($media: [UpdateMediaInput!]!, $productId: ID!) { productUpdateMedia(media: $media, productId: $productId) { media { alt } userErrors { message field } } }",
stagedUploadPath: $stagedUploadPath) {
bulkOperation {
id
url
status
}
userErrors {
message
field
}
}
}
GRAPHQL
I’m getting the following message after attempting the post:
"Internal error. Looks like something went wrong on our end.\nRequest ID: 7cae4d4f-30b5-43ab-b37e-1ccddc5d600b (include this in support requests)."
Internal error. Looks like something went wrong on our end.\nRequest ID: e054bc5b-f902-4ec4-96eb-4c711024ebba (include this in support requests).
Please help me solve this issue ![]()
Thanks
Arjun