Hi Team,
Is there a way to query which lot numbers have been allocated to an order pre-shipping?
Additionally, after the shipping is completed, I can see shipped_line_item_lots, however in the schema for this it doesn’t give me the quantity pick per lot, how would I surface this information?
query {
order {
request_id
complexity
data {
id
legacy_id
order_number
partner_order_id
shop_name
fulfillment_status
ready_to_ship
line_items{
edges {
node {
id
sku
partner_line_item_id
quantity
product_name
fulfillment_status
quantity_shipped
quantity_pending_fulfillment
quantity_allocated
backorder_quantity
shipped_line_item_lots {
line_item_id
lot_id
lot_name
lot_expiration_date
}
}
}
}
}
}
}