We have an issue where most of the shipments we fetch from the graphql endpoint have empty shipping labels and we are not sure what is causing that.
Here’s the request_id: 60f0a93d25726c9f5aad1943
The query we are running is the following:
query {
shipments {
data(first: 100) {
pageInfo {
startCursor
endCursor
hasNextPage
}
edges {
node {
id
warehouse_id
order_id
order {
partner_order_id
id
}
address {
name
address1
address2
city
state
country
zip
phone
}
created_date
shipping_labels {
id
id
tracking_number
carrier
shipping_name
shipping_method
cost
insurance_amount
created_date
}
}
}
}
}
}
It would be great if you could clear up why there are no shipping labels for a lot of the shipments