I am the developer of this app and when using the GraphQL API I have mixed success between different merchants. Here’s the content of my GraphQL request:
{
orders(first:10, query:"sortKey:CREATED_AT, reverse:true") {
edges {
node {
id, legacyResourceId, name, createdAt, cancelledAt, cancelReason, email
shippingAddress { zip }
lineItems(first:25) {
edges {
node { id, sku, quantity }
}
}
fulfillments {
legacyResourceId
fulfillmentLineItems(first:25) {
edges {
node {
id
lineItem { id }
}
}
}
}
}
}
}
}
It succeeds with many shops, but with other shops using a valid access token with the correct scopes I get this unhelpful message:
{
"errors": [
{
"message": "Internal error. Looks like something went wrong on our end.\nRequest ID: 2df8c6cb-bac8-41a3-a591-a7c65c7033f0 (include this in support requests).",
"extensions": {
"code": "INTERNAL_SERVER_ERROR",
"requestId": "2df8c6cb-bac8-41a3-a591-a7c65c7033f0"
}
}
]
}
Can someone help me figure out what is wrong here?

