I always get “INTERNAL_SERVER_ERROR” error when trying to export product fixed prices. When bulk query export contains about 2 - 3 million lines, it will return INTERNAL_SERVER_ERROR error. Here is the bulk operation query that I use
mutation {
bulkOperationRunQuery(
query: """
{
priceLists {
edges {
node {
id
currency
contextRule{countries}
parent {
adjustment {
type
value
}
}
prices(originType:FIXED) {
edges {
node {
variant {
id
product{
id
}
}
price {
amount
currencyCode
}
compareAtPrice {
amount
}
}
}
}
}
}
}
}
"""
) {
bulkOperation {id status}
userErrors {field message}
}
}
This problem is only occurring with this specific store: sachinandbabi.myshopify.com, while the bulk query export works properly with the other merchant stores.