@tomasw in graphql can we also get the packages details in get order query?
or I need to run any other query?
if it’s possible please provide me a query for the same.
Hi @madhupatel !
Would a query like this work for you?:
query {
order(id: "129515767") {
request_id
complexity
data {
id
legacy_id
order_number
fulfillment_status
shipments {
id
legacy_id
shipping_labels {
id
legacy_id
box_id
box_code
dimensions {
weight
height
width
length
}
}
}
}
}
}
Let me know if you still need more info to be displayed, but the Package info should be under shipments–> shipping_labels --> dimensions
Thanks!
Tom