I’m running the currentBulkOperation query on 2025-10 and it’s returning an old operation which is already completed, but there is another more recent one on the store and i would expect this to show instead.
query {
currentBulkOperation {
id
status
errorCode
createdAt
completedAt
objectCount
fileSize
url
partialDataUrl
}
}
{
“data”: {
“currentBulkOperation”: {
“id”: “gid://shopify/BulkOperation/6847798345986”,
“status”: “COMPLETED”,
“errorCode”: null,
“createdAt”: “2025-12-05T21:42:09Z”,
“completedAt”: “2025-12-05T21:44:53Z”,
“objectCount”: “98936”,
“fileSize”: “30510485”,
“url”: “”,
“partialDataUrl”: null
}
},
“extensions”: {
“cost”: {
“requestedQueryCost”: 1,
“actualQueryCost”: 1,
“throttleStatus”: {
“maximumAvailable”: 2000.0,
“currentlyAvailable”: 1999,
“restoreRate”: 100.0
}
}
}
}
and here is the latest one
query {
node(id: “gid://shopify/BulkOperation/6847809945858”) {
... **on** BulkOperation {
id
status
errorCode
createdAt
completedAt
objectCount
fileSize
url
partialDataUrl
}
}
}
{
“data”: {
“node”: {
“id”: “gid://shopify/BulkOperation/6847809945858”,
“status”: “COMPLETED”,
“errorCode”: null,
“createdAt”: “2025-12-05T21:45:09Z”,
“completedAt”: “2025-12-05T21:54:55Z”,
“objectCount”: “10117”,
“fileSize”: “1748260”,
“url”: “”,
“partialDataUrl”: null
}
},
“extensions”: {
“cost”: {
“requestedQueryCost”: 1,
“actualQueryCost”: 1,
“throttleStatus”: {
“maximumAvailable”: 2000.0,
“currentlyAvailable”: 1999,
“restoreRate”: 100.0
}
}
}
}