Hi team,
I’m using this query via bulkOperations and getting the following error.
'Queries that contain a connection field within a list field are not currently supported.'
Query:
query {
orders {
edges {
node {
name
id
createdAt
lineItems {
edges {
node {
variant {
id
}
title
sku
quantity
discountedUnitPriceAfterAllDiscountsSet {
presentmentMoney {
amount
currencyCode
}
}
originalUnitPriceSet {
presentmentMoney {
amount
currencyCode
}
}
}
}
}
netPaymentSet {
presentmentMoney {
amount
currencyCode
}
}
refunds {
refundLineItems {
edges {
node {
lineItem {
variant {
id
}
}
quantity
}
}
}
}
}
}
}
}
Error:
{
'data': {
'bulkOperationRunQuery': {
'bulkOperation': None,
'userErrors': [
{
'message': 'Queries that contain a connection field within a list field are not currently supported.',
'field': ['query']
}
]
}
}
}
Any solution to over come this limitation?