HI i am new to this so I was trying to fetch shipment details of order using this API call
shipments(order_id:"' . $orderNumber . '"){
request_id
complexity
data {
edges {
node {
id
legacy_id
order_id
user_id
warehouse_id
pending_shipment_id
address {
name
address1
address2
city
state
country
zip
phone
}
created_date
line_items(first: 2) {
edges {
node {
line_item_id
quantity
}
}
}
shipping_labels {
id
legacy_id
account_id
shipment_id
order_id
status
tracking_number
order_number
carrier
shipping_name
shipping_method
cost
packing_slip
}
}
}
}
}
}';
now I have the packing slip in that order shipment
in response of that API the return value of this packing_slip should be url to this image packing slip right ?