inbound_shipment

Arguments

ArgumentTypeRequiredDefaultDescription
idString!Yes
analyzeBooleanNo

If true, the query will only be analyzed (cost estimated) without executing it.

Return Type

InboundShipmentQueryResult

Query

query inbound_shipment(
  $id: String!,
  $analyze: Boolean
) {
  inbound_shipment(
    id: $id,
    analyze: $analyze
  ) {
    request_id
    complexity
    data {
      ...InboundShipmentFragment
    }
  }
}

Variables

{
  "id": "abc123",
  "analyze": true
}

Response

{
  "data": {
    "inbound_shipment": {
      "request_id": "abc123",
      "complexity": 987,
      "data": InboundShipment
    }
  }
}