Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

Time out error getting variants on collection graphql

Time out error getting variants on collection graphql

pablo179
Shopify Partner
1 0 0

we get the products and collections from many stores , we use just one queryu, but there is a specific store that fails on this query, we don't get any error message, we just get a time out and using Insomnia we see the image attached.

Screenshot from 2022-03-17 13-54-16.pngthis is the query that drops this issue : 

{
  shop {
    name
  }
  collections(first: 100) {
    edges {
      node {
        id
        title
        products(first: 100) {
          edges {
            node {
              id
              title
              variants(first: 10) {
                edges {
                  node {
                    title
                    price
                    id
                    requiresShipping
                    image {
                      id
                      originalSrc
                      altText
                    }
                    selectedOptions {
                      name
                      value
                    }
                  }
                }
              }
              createdAt
            }
          }
        }
      }
    }
  }
}

the store is onefc-worldwide.myshopify.com

Replies 0 (0)