I am getting the error when using Product Query Graphql request it works fine for the first products and then suddenly it starts throwing this error.
Basically, I am looping each product by getting the next cursor and updating the price for the product.
Example error:
‘Request ID: 46d01cb-b4a0-414-8c4-40c5d79cc66 (include this in support requests).’
Also, check the attached file please.
Example request:
{
products(first: 1, query: "tag:Photography", after:"eyJsYXN0X2lkIjo0NTYwODg3NzQyNTE5LCJsYXN0X3ZhbHVlIjo0NTYwODg3NzQyNTE5fQ==") {
pageInfo {
hasNextPage
hasPreviousPage
endCursor
}
edges {
cursor
node {
id
title
variants(first: 100) {
edges {
node {
id
title
compareAtPrice
price
selectedOptions {
name
value
}
}
}
}
}
}
}
}