While Making Graphql Request from my Next.js Application
I am getting this error.
not sure what went wrong?
GraphQL Request Error: ClientError: Internal error. Looks like something went wrong on our end. Request ID: fe329315-3d43-44bf-b75d-d516a3cd86e3-1733218749 (include this in support requests).: {“response”:{“errors”:[{“message”:“Internal error. Looks like something went wrong on our end.\nRequest ID: fe329315-3d43-44bf-b75d-d516a3cd86e3-1733218749 (include this in support requests).”,“extensions”:{“code”:“INTERNAL_SERVER_ERROR”,
Query →
query getProducts($first: Int = 10, $query: String) {
products(first: $first, query: $query) {
pageInfo {
hasNextPage
hasPreviousPage
}
edges {
node {
title
totalInventory
handle
tags
category {
name
}
}
}
}
}