inbound_shipment_images
Arguments
| Argument | Type | Required | Default | Description |
|---|---|---|---|---|
inbound_shipment_id | String! | Yes | ||
analyze | Boolean | No | If true, the query will only be analyzed (cost estimated) without executing it. |
Return Type
InboundShipmentImagesQueryResult
Query
query inbound_shipment_images(
$inbound_shipment_id: String!,
$analyze: Boolean
) {
inbound_shipment_images(
inbound_shipment_id: $inbound_shipment_id,
analyze: $analyze
) {
request_id
complexity
data {
url
filename
mimetype
file_size_bytes
description
created_at
updated_at
}
}
}Variables
{
"inbound_shipment_id": "abc123",
"analyze": true
}Response
{
"data": {
"inbound_shipment_images": {
"request_id": "abc123",
"complexity": 987,
"data": InboundShipmentImage
}
}
}