We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more

Internal error. Looks like something went wrong on our end while querying product

Internal error. Looks like something went wrong on our end while querying product

khanakia
Shopify Partner
5 0 1

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
                }
               
              }
            }
          }
        }
      }
    }
}
Replies 0 (0)