carrier_box
Arguments
| Argument | Type | Required | Default | Description |
|---|---|---|---|---|
box_code | String! | Yes | ||
warehouse_identifier | String! | Yes | ||
analyze | Boolean | No | If true, the query will only be analyzed (cost estimated) without executing it. |
Return Type
Query
query carrier_box(
$box_code: String!,
$warehouse_identifier: String!,
$analyze: Boolean
) {
carrier_box(
box_code: $box_code,
warehouse_identifier: $warehouse_identifier,
analyze: $analyze
) {
request_id
complexity
data {
account_id
box_code
warehouse_identifier
warehouse_id
on_hand
active
price
carrier
carrier_code
name
area
dimensions {
weight
height
width
length
}
international
barcode
}
}
}Variables
{
"box_code": "abc123",
"warehouse_identifier": "abc123",
"analyze": true
}Response
{
"data": {
"carrier_box": {
"request_id": "abc123",
"complexity": 987,
"data": CarrierBox
}
}
}