I am ready to do batch update according to the instructions
https://shopify.dev/api/usage/bulk-operations/imports#retrieve-the-results
No problem up front. To the query result node returns null
webhook return
{"admin_graphql_api_id":"gid:\/\/shopify\/BulkOperation\/628413137063","completed_at":"2021-11-03T10:50:38-04:00","created_at":"2021-11-03T10:50:35-04:00","error_code":null,"status":"completed","type":"mutation"}
i post get the result
query {
node(id: "gid://shopify/BulkOperation/628413137063") {
... on BulkOperation {
url
partialDataUrl
}
}
}
But the result keeps returning null
array(2) {
["data"]=>
array(1) {
["node"]=>
NULL
}
["extensions"]=>
array(1) {
["cost"]=>
array(3) {
["requestedQueryCost"]=>
int(1)
["actualQueryCost"]=>
int(1)
["throttleStatus"]=>
array(3) {
["maximumAvailable"]=>
float(1000)
["currentlyAvailable"]=>
int(999)
["restoreRate"]=>
float(50)
}
}
}
}
myshopify.com/admin/api/2021-10/graphql.json
Can someone help me see why?