Hi Community,
Hope all is well to you guys. I would like to ask what is the most optimal query to indicate that the order has started the picking process?
Currently we are using this shipments query to get the all the items of the order that have been picked but the complexity of this query is too high (1001)
shipments(order_id: "T3JkZXI6MjQxMzAzMzI0") {
request_id
complexity
data(first: 10) {
edges {
node {
completed
created_date
delivered
id
order_id
picked_up
line_items {
edges {
node {
quantity
id
line_item_id
shipment_id
line_item {
sku
}
}
}
}
}
}
}
}
Looking forwar for your response. Thank you
Altair