Hi there,
I am using the new product set to upload product images from an external source and pass in an array according to the documentation.
I noticed that the product set operation didn’t seem to be processing all the images when creating or updating the products, some seemed to be simply dropped.
There should be 3 images for the product, but only two showed up
Here is my product set
{
"id": "gid://shopify/Product/7918315175970",
"files": [
{
"originalSource": "https://myimageserver.com/69166.jpg",
"duplicateResolutionMode": "REPLACE",
"filename": "69166.jpg",
"contentType": "IMAGE",
"alt": "69166.jpg"
},
{
"originalSource": "https://myimageserver.com/69166_1.jpg",
"duplicateResolutionMode": "REPLACE",
"filename": "69166_1.jpg",
"contentType": "IMAGE",
"alt": "69166_1.jpg"
},
{
"originalSource": "https://myimageserver.com/69166_2.jpg",
"duplicateResolutionMode": "REPLACE",
"filename": "69166_2.jpg",
"contentType": "IMAGE",
"alt": "69166_2.jpg"
}
]
}
As can be seen in the response from the product set one of the images just dropped out. I also returned the media warnings and errors but the first image just vanished.
"productSet": {
"product": {
"id": "gid://shopify/Product/7918315175970",
"status": "ACTIVE",
"media": {
"nodes": [
{
"id": "gid://shopify/MediaImage/26964126662690",
"alt": "69166_1.jpg",
"status": "PROCESSING",
"mediaErrors": [],
"mediaWarnings": []
},
{
"id": "gid://shopify/MediaImage/26964126695458",
"alt": "69166_2.jpg",
"status": "PROCESSING",
"mediaErrors": [],
"mediaWarnings": []
}
]
}
},
"userErrors": []
}
Could someone shed some light on this issue please?
Cheers,
Gary