Hi, I’ve been using the GraphQL API to pull transaction data across ~50 locations. I’ve been retrieving 200 records at a time, by the time I get to the ~10th call by passing in the previous end cursor I get the following error from the API:
{
"errors": [
{
"code": "INTERNAL_SERVER_ERROR",
"message": "500: Internal Server Error",
"extensions": {
"response": {
"url": "http://localhost/graphql",
"status": 500,
"statusText": "Internal Server Error",
"body": {
"success": false,
"title": null,
"message": {
"resource_bundle_name": "com.squareup.webservice.WebserviceMessages",
"key": "there.was.a.problem.processing.this.request",
"arguments": []
},
"debug_info": ""
}
}
}
}
],
"data": {
"orders": null
}
}
Is there any additional logging on the Square side that might help figure out what’s happening here? Thank you!