A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
Why does GraphQL Bulk Query return the following response for an operation?
{
"data": {
"node": null
},
"extensions": {
"cost": {
"requestedQueryCost": 1,
"actualQueryCost": 1,
"throttleStatus": {
"maximumAvailable": 2000,
"currentlyAvailable": 1999,
"restoreRate": 100
}
}
}
}
Node is `null` no matter how many times it is tried.
Solved! Go to the solution
This is an accepted solution.
It's difficult to ascertain without seeing the GQL request you are making. Can you provide that?
This is an accepted solution.
It's difficult to ascertain without seeing the GQL request you are making. Can you provide that?
I have the same issue. Some product Ids are returning a value but others are not.
Hello there, my code had the same issue. I realized I was using the parameter "id" which is the item id or the variant id and not the "product_id". Check for the product_id specifically.