Storefront server error

Hello,

Some api calls to the storefront seems to be failing randomly.

{
    "errors": [
        {
            "message": "Internal error. Looks like something went wrong on our end.\nRequest ID: 83186258-5509-4ab3-b4d7-9e856dd8a7bd-1764769681 (include this in support requests).",
            "extensions": {
                "code": "INTERNAL_SERVER_ERROR",
                "requestId": "83186258-5509-4ab3-b4d7-9e856dd8a7bd-1764769681"
            }
        }
    ]
}

The same request with the id 97792e55-182c-4bda-942b-bdce1c58e573-1764769749 returned the correct data.

Thanks.

1 Like

Hi @Tony_Silva

Could you share the parameters of the failed request?

Hello @kyle_liu

Here are the query and variables from my last requestId b53a8b0f-1e6f-4d02-95fb-61b96ff86629-1764867474:

fragment SimpleProductWithSimplifiedMetaFields on Product {
    id
}
    
query GetShopProducts(
    $productsCount: Int!
    $cursor: String
) {
    products(first: $productsCount, after: $cursor) {
        pageInfo {
            hasNextPage
            endCursor
        }
        nodes {
            ...SimpleProductWithSimplifiedMetaFields
        }
    }
}        
{
  "productsCount": 1
}

Thanks.