inbound_shipment_location_summary

Arguments

ArgumentTypeRequiredDefaultDescription
inbound_shipment_idString!Yes
owned_by_userBooleanNo
analyzeBooleanNo

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

Return Type

InboundShipmentLocationSummaryQueryResult

Query

query inbound_shipment_location_summary(
  $inbound_shipment_id: String!,
  $owned_by_user: Boolean,
  $analyze: Boolean
) {
  inbound_shipment_location_summary(
    inbound_shipment_id: $inbound_shipment_id,
    owned_by_user: $owned_by_user,
    analyze: $analyze
  ) {
    request_id
    complexity
    data {
      ...InboundShipmentLocationSummaryDataFragment
    }
  }
}

Variables

{
  "inbound_shipment_id": "abc123",
  "owned_by_user": true,
  "analyze": true
}

Response

{
  "data": {
    "inbound_shipment_location_summary": {
      "request_id": "abc123",
      "complexity": 987,
      "data": InboundShipmentLocationSummaryData
    }
  }
}