totes

Arguments

ArgumentTypeRequiredDefaultDescription
searchStringNo

Partial name or barcode of the tote

status[String]No

Statuses of the totes to include.

status_not_in[String]No

Statuses of the totes to exclude

warehouse_ids[String]No

Warehouse IDs of the totes

analyzeBooleanNo

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

Return Type

TotesQueryResult

Query

query totes(
  $search: String,
  $status: [String],
  $status_not_in: [String],
  $warehouse_ids: [String],
  $analyze: Boolean
) {
  totes(
    search: $search,
    status: $status,
    status_not_in: $status_not_in,
    warehouse_ids: $warehouse_ids,
    analyze: $analyze
  ) {
    request_id
    complexity
    data {
      ...ToteConnectionFragment
    }
  }
}

Variables

{
  "search": "abc123",
  "status": ["abc123"],
  "status_not_in": ["abc123"],
  "warehouse_ids": ["abc123"],
  "analyze": true
}

Response

{
  "data": {
    "totes": {
      "request_id": "abc123",
      "complexity": 987,
      "data": ToteConnection
    }
  }
}