Hi
I sometimes getting this response when I query to get all products from a collection
[
{
“message”: “Internal error. Looks like something went wrong on our end.\nRequest ID: c4dc1202-d542-47ce-95d1-a2e421cc52d9-1767179922 (include this in support requests).”,
“extensions”: {
“code”: “INTERNAL_SERVER_ERROR”,
“requestId”: “c4dc1202-d542-47ce-95d1-a2e421cc52d9-1767179922”
}
}
]
This is my query and variables
{
“query”: " query($collectionIds: String!, $first: Int!, $after: String, $languageCode: LanguageCode!, $countryVar: CountryCode!) @inContext(country: $countryVar,language: $languageCode) {
collections(first:10, query: $collectionIds) {
nodes {
id
title
handle
products(first: $first, after: $after) {
pageInfo {
hasNextPage
endCursor
}
nodes {
id
title
handle
availableForSale
requiresSellingPlan
images(first: 1) {
nodes {
src
}
}
options {
name
values
}
variants(first: 250) {
nodes {
id
title
price{
amount
currencyCode
}
compareAtPrice{
amount
currencyCode
}
availableForSale
selectedOptions {
name
value
}
image {
id
url
}
sellingPlanAllocations(first: 100) {
nodes {
sellingPlan {
id
}
priceAdjustments {
price {
amount
}
}
}
}
}
}
sellingPlanGroups(first: 100) {
nodes {
sellingPlans(first: 100) {
nodes {
id
name
priceAdjustments {
adjustmentValue {
__typename
… on SellingPlanPercentagePriceAdjustment {
adjustmentPercentage
}
… on SellingPlanFixedAmountPriceAdjustment {
adjustmentAmount {
amount
currencyCode
}
}
… on SellingPlanFixedPriceAdjustment {
price {
amount
currencyCode
}
}
}
}
}
}
}
}
}
}
}
}
} ",
“variables”: {
“collectionIds”: “239046492326”,
“languageCode”: “EN”,
“countryVar”: “IN”,
“after”: null,
“first”: 250
},
“shop”: “dearbball-fr.myshopify.com”
}