recently there have been several accounts where I get an error after about a minute of running the request
The status starts running, and after about a minute, I get in “status”: “FAILED,” and “errorCode”: “INTERNAL_SERVER_ERROR,”
I changed to several API versions
I used 2023 07
And also, in 2023 04
And in both, I get the same error
this is my query
mutation {
bulkOperationRunQuery(
query: """
{
orders(query:"(processed_at:>'2023-08-15' processed_at:<'2023-08-16') ")
{
edges
{
node
{
id
processedAt
tags
physicalLocation {
name
}
cancelledAt
cancelReason
paymentGatewayNames
shippingLine
{
title
}
billingAddress
{
address1
address2
city
zip
provinceCode
province
phone
name
formattedArea
countryCodeV2
countryCode
country
company
}
billingAddressMatchesShippingAddress
shippingAddress
{
address1
address2
city
zip
provinceCode
province
phone
name
formattedArea
countryCodeV2
countryCode
country
company
}
cartDiscountAmountSet
{
shopMoney
{
amount
}
}
totalDiscountsSet
{
shopMoney
{
amount
}
}
publication
{
name
}
customer
{
id
lastName
firstName
email
tags
}
tags
currencyCode
confirmed
closedAt
createdAt
customerAcceptsMarketing
closed
clientIp
discountCode
customerJourneySummary
{
customerOrderIndex
firstVisit
{
source
sourceType
utmParameters
{
campaign
content
medium
source
term
}
referrerUrl
referralCode
landingPage
}
lastVisit
{
source
sourceType
utmParameters
{
campaign
content
medium
source
term
}
referrerUrl
referralCode
landingPage
}
}
displayFinancialStatus
displayFulfillmentStatus
fulfillable
hasTimelineComment
fullyPaid
name
note
riskLevel
restockable
requiresShipping
refundable
presentmentCurrencyCode
unpaid
updatedAt
subtotalLineItemsQuantity
totalReceivedSet {
shopMoney {
amount
}
}
totalPriceSet
{
shopMoney
{
amount
}
}
totalShippingPriceSet
{
shopMoney
{
amount
}
}
totalTaxSet
{
shopMoney
{
amount
}
}
refunds
{
id
createdAt
totalRefundedSet
{
shopMoney
{
amount
}
}
}
}
}
}
}
"""
) {
bulkOperation {
id
status
}
userErrors {
field
message
}
}
}
Was there a change or something?
Even if I requested with only id
I got the same error