Hi my client has been experiencing this weird error for a few days now. We couldn’t figure out what is the reason.
request:
mutation appSubscriptionCreate(
$name: String!
$returnUrl: URL!
$trialDays: Int
$test: Boolean
$lineItems: [AppSubscriptionLineItemInput!]!
) {
appSubscriptionCreate(
name: $name
returnUrl: $returnUrl
trialDays: $trialDays
test: $test
lineItems: $lineItems
) {
userErrors {
field
message
}
confirmationUrl
appSubscription {
id
}
}
}
response:
{
"errors": {
"networkStatusCode": 200,
"message": "GraphQL Client: An error occurred while fetching from the API. Review 'graphQLErrors' for details.",
"graphQLErrors": [
{
"message": "Internal error. Looks like something went wrong on our end.\nRequest ID: 1beded62-c661-4d85-bace-9aea46f120a6-1714113229 (include this in support requests).",
"extensions": {
"code": "INTERNAL_SERVER_ERROR",
"requestId": "1beded62-c661-4d85-bace-9aea46f120a6-1714113229"
}
}
],
"response": {
"size": 0,
"timeout": 0
}
}
}