A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
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.
this 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