A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
hello, i’m trying to run this query to find out what line items were returned/refunded
{
orders {
edges {
node {
id
refunds {
id
refundLineItems {
edges {
node {
lineItem {
id
name
}
}
}
}
}
}
}
}
}
but i’m getting this error:
Queries that contain a connection field within a list field are not currently supported.
looks like it’s not supported by the bulk api right now but is there any other way to get this data via the bulk api? i’ve tried using transactions, refunds and fulfillments but no luck so far