I made a request with UpdateProductVariantsInBulkAndMedia
The query returns success and each media has their id. However only 2 images are showing on the item. Here is the response:
{
"data": {
"productVariantsBulkUpdate": {
"productVariants": [
{
"id": "gid://shopify/ProductVariant/45444396941548",
"sku": "19116-BGPL-CP",
"updatedAt": "2024-07-23T20:53:19Z",
"createdAt": "2024-07-06T20:21:32Z",
"inventoryItem": {
"id": "gid://shopify/InventoryItem/47538892898540"
},
"media": {
"nodes": [
{
"id": "gid://shopify/MediaImage/33977268863212",
"alt": "",
"image": null,
"mediaContentType": "IMAGE"
}
]
},
"image": null
}
],
"product": {
"id": "gid://shopify/Product/8574413471980",
"publishedAt": "2024-07-06T20:21:23Z",
"media": {
"edges": [
{
"node": {
"id": "gid://shopify/MediaImage/33977268863212",
"image": null,
"mediaContentType": "IMAGE"
}
},
{
"node": {
"id": "gid://shopify/MediaImage/33977268895980",
"image": null,
"mediaContentType": "IMAGE"
}
},
{
"node": {
"id": "gid://shopify/MediaImage/33977268928748",
"image": null,
"mediaContentType": "IMAGE"
}
},
{
"node": {
"id": "gid://shopify/MediaImage/33977268961516",
"image": null,
"mediaContentType": "IMAGE"
}
},
{
"node": {
"id": "gid://shopify/MediaImage/33977268994284",
"image": null,
"mediaContentType": "IMAGE"
}
},
{
"node": {
"id": "gid://shopify/MediaImage/33977269027052",
"image": null,
"mediaContentType": "IMAGE"
}
},
{
"node": {
"id": "gid://shopify/MediaImage/33977269059820",
"image": null,
"mediaContentType": "IMAGE"
}
},
{
"node": {
"id": "gid://shopify/MediaImage/33977269092588",
"image": null,
"mediaContentType": "IMAGE"
}
},
{
"node": {
"id": "gid://shopify/MediaImage/33977269125356",
"image": null,
"mediaContentType": "IMAGE"
}
},
{
"node": {
"id": "gid://shopify/MediaImage/33977269158124",
"image": null,
"mediaContentType": "IMAGE"
}
}
]
}
},
"userErrors": []
}
},
"extensions": {
"cost": {
"requestedQueryCost": 32,
"actualQueryCost": 26,
"throttleStatus": {
"maximumAvailable": 2000,
"currentlyAvailable": 1974,
"restoreRate": 100
}
}
}
}
Here is the product: https://www.carpartpeople.com/products/fuel-pump-ford-mustang-03-04-tvs-bl-a1000-19116?_pos=1&_sid=2cbc1d8a8&_ss=r
Can you please why the response is success but the other images are not showing?
Thanks