Hi!
I’m facing an error with Storefront GQL API collectionByHandle method, this request were working before, but now it is throwing following error:
[{'message': 'Internal error. Looks like something went wrong on our end.\\nRequest ID: ff0c34da-ee73-4b98-b0e9-2687619ea4c6 (include this in support requests).', 'extensions': {'code': 'INTERNAL_SERVER_ERROR', 'requestId': 'ff0c34da-ee73-4b98-b0e9-2687619ea4c6'}}]
That is the example of the query I’m making :
query MyQuery {
collectionByHandle(handle: "frontpage") {
id
title
handle
products(sortKey: BEST_SELLING, reverse: false, first: 10) {
edges {
cursor
node {
id
tags
title
handle
totalInventory
options {
name
values
}
images(first: 1) {
edges {
node {
url(transform: {maxHeight: 500, maxWidth: 500})
}
}
}
priceRange {
maxVariantPrice {
amount
currencyCode
}
minVariantPrice {
amount
currencyCode
}
}
variants(first: 10) {
edges {
node {
id
sku
title
availableForSale
image {
id
url(transform: {maxHeight: 500, maxWidth: 500})
}
selectedOptions {
name
value
}
compareAtPrice {
amount
currencyCode
}
price {
amount
currencyCode
}
quantityAvailable
}
}
}
compareAtPriceRange {
maxVariantPrice {
amount
currencyCode
}
minVariantPrice {
amount
currencyCode
}
}
}
}
pageInfo {
hasNextPage
hasPreviousPage
}
}
}
}
Request ID for reference: ff0c34da-ee73-4b98-b0e9-2687619ea4c6