inbound_shipment_images

Fetch inbound shipment images matching the supplied arguments.

Arguments

ArgumentTypeRequiredDefaultDescription
inbound_shipment_idString!Yes

Filter by inbound shipment ID; pass the public API ID unless the field name says legacy ID. Required.

analyzeBooleanNo

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 {
      ...InboundShipmentImageFragment
    }
  }
}

Variables

{
  "inbound_shipment_id": "SW5ib3VuZFNoaXBtZW50OjEyMzQ=",
  "analyze": true
}

Response

{
  "data": {
    "inbound_shipment_images": {
      "request_id": "UmVjb3JkOjEyMzQ=",
      "complexity": 100,
      "data": [[{id: "SW5ib3VuZFNoaXBtZW50SW1hZ2U6MTIzNA=="}]]
    }
  }
}