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