Hello, I am making a GraphQL request with a private app and getting this error:
{
"errors":[
{
"message":"Internal error. Looks like something went wrong on our end.\nRequest ID: 2cbbc9bc-8801-4f02-a3dd-f76c47ad1f03 (include this in support requests).",
"extensions":{
"code":"INTERNAL_SERVER_ERROR",
"requestId":"2cbbc9bc-8801-4f02-a3dd-f76c47ad1f03"
}
}
]
}
This is what my query looks like.
`{
orders(first:99, after:` + cursor + `) {
pageInfo {
hasNextPage
}
edges {
cursor
node {
id
}
}
}
}`
The API was working fine until a few hours ago. API is written in Golang.
Thanks for any help!

