[GraphQL error]: Message: Internal error. Looks like something went wrong on our end.

Masato338
Tourist
4 0 2

I encountered the error below.

 

[GraphQL error]: Message: Internal error. Looks like something went wrong on our end.
Request ID: 42c634ef-798a-4734-b6d4-ee23d5c3b12c (include this in support requests)., Location: undefined, Path: undefined

 

This error happens when I get subscription-url using code below.

export function RECURRING_CREATE(url) {
  return gql`
    mutation {
      appSubscriptionCreate(
          name: "normal plan"
          returnUrl: "${url}"
          test: true
          lineItems: [
          {
            plan: {
              appUsagePricingDetails: {
                  cappedAmount: { amount: 10, currencyCode: USD }
                  terms: "追加料金はかかりません"
              }
            }
          }
          {
            plan: {
              appRecurringPricingDetails: {
                  price: { amount: 10, currencyCode: USD }
              }
            }
          }
          ]
        ) {
            userErrors {
              field
              message
            }
            confirmationUrl
            appSubscription {
              id
              status
            }
        }
    }`;
}

 

Could you give me some advices, Thanks.

Reply 1 (1)

Ondricka
Visitor
2 0 0

Hi! I'm using this query to fetch products based on the product type such as product_type:pret. In some cases, I'm using OR condition as well where the query becomes product_type:pret OR product_type:formal. With some filters, it's returning the exact result but for some, it randomly returns Error: Internal error. Looks like something went wrong on our end. Like it may be working fine for a query one day and will start displaying the error on that same query the next day. Does anyone have any idea what might I be doing wrong or how can I resolve this issue.