Hi
I have the error Queries that contain a connection field within a list field are not currently supported with this bulk query
mutation {
bulkOperationRunQuery(
query:"""
{
orders(query:"created_at:>='${date.toISOString().split('.')[0]}Z' AND fulfillment_status:partial"){
edges{
node{
id
name
fulfillments {
fulfillmentLineItems{
edges{
node{
lineItem{
sku
}
quantity
}
}
}
trackingInfo {
number
}
}
......
I have done some research and found that I couldn’t use “fulfillments” field in a bulk operation but I need this field so is there a known work around for this pls? I couldn’t find anything by myself and I don’t know shopify’s graphql api enough, going through pagination would take hours instead of 5 min.
Thanks in advance to anyone that can help me.