We consistently get Internal Server Error (as above) on some of the bulk requests. The query in question:
{
orders(query: "updated_at:*")
{
edges
{
node
{
id
createdAt
name
updatedAt
physicalLocation { id name }
totalShippingPriceSet { shopMoney { amount } }
totalDiscountsSet { shopMoney { amount } }
lineItems {
edges {
node {
id
product {
id
title
productType
vendor
}
variantTitle
name
variant {
id
selectedOptions { name value }
taxCode
taxable
sku
inventoryItem {
id
sku
unitCost { amount }
}
}
totalDiscountSet { shopMoney { amount } }
discountedTotalSet { shopMoney { amount } }
quantity
taxLines {
priceSet {
shopMoney { amount }
}
}
}
}
}
}
}
}
}
The same query completes correctly when we mimic the bulk request with Shopify GraphQL app.
A different query (locations(query:“updated_at:>*”) {…}) executes fine.
The failing shop has demo only demo data, and the response is like this:
/admin/api/2023-04/graphql.json
Date: Thu, 10 Aug 2023 11:23:42 GMT
X-Request-ID: fbb7730d-352f-4284-9e2a-dedbc6595875
{'id': 'gid://shopify/BulkOperation/4022380626250', 'url': None, 'status': 'FAILED', 'errorCode': 'INTERNAL_SERVER_ERROR', 'objectCount': '0', 'fileSize': None, 'partialDataUrl': None}