inbound_shipment_location_summary
Arguments
| Argument | Type | Required | Default | Description |
|---|---|---|---|---|
inbound_shipment_id | String! | Yes | ||
owned_by_user | Boolean | No | ||
analyze | Boolean | No | If true, the query will only be analyzed (cost estimated) without executing it. |
Return Type
InboundShipmentLocationSummaryQueryResult
Query
query inbound_shipment_location_summary(
$inbound_shipment_id: String!,
$owned_by_user: Boolean,
$analyze: Boolean
) {
inbound_shipment_location_summary(
inbound_shipment_id: $inbound_shipment_id,
owned_by_user: $owned_by_user,
analyze: $analyze
) {
request_id
complexity
data {
locations {
location {
id
location
zone
}
items_at_location {
product_info {
id
sku
name
}
lot {
id
name
sku
}
eaches_quantity
uom
is_unexpected
inbound_shipment_line_item {
id
quantity
quantity_received
quantity_rejected
}
}
}
}
}
}Variables
{
"inbound_shipment_id": "abc123",
"owned_by_user": true,
"analyze": true
}Response
{
"data": {
"inbound_shipment_location_summary": {
"request_id": "abc123",
"complexity": 987,
"data": InboundShipmentLocationSummaryData
}
}
}