I keep getting this error on our production website, but not sure what is causing the issue as the error message if vague. Can I ask what might be causing this issue? It was working fine a week ago.
{
"errors": [
{
"message": "Internal error. Looks like something went wrong on our end.\nRequest ID: c763fb8f-b61e-493e-8e24-b3e720f6eb16-1745504030 (include this in support requests).",
"extensions": {
"code": "INTERNAL_SERVER_ERROR",
"requestId": "c763fb8f-b61e-493e-8e24-b3e720f6eb16-1745504030"
}
}
]
}
This is my full query:
const productsQuery = `
query Products {
products(first: 250) {
edges {
node {
id
title
description
handle
tags
priceRange {
minVariantPrice {
amount
}
}
images(first: 1) {
edges {
node {
url
altText
}
}
}
variants(first: 40) {
edges {
node {
id
title
selectedOptions {
name
value
}
}
}
}
}
}
}
}