tote_history
Fetch tote history records matching the supplied arguments.
Arguments
| Argument | Type | Required | Default | Description |
|---|---|---|---|---|
tote_name | String | No | Filter by tote name. | |
tote_id | String | No | Filter by tote ID; pass the public API ID unless the field name says legacy ID. | |
date_from | ISODateTime | No | Inclusive start of the date range, in ISO-8601 datetime format. | |
date_to | ISODateTime | No | Inclusive end of the date range, in ISO-8601 datetime format. | |
analyze | Boolean | No | If true, the query will only be analyzed (cost estimated) without executing it. |
Return Type
Query
query tote_history(
$tote_name: String,
$tote_id: String,
$date_from: ISODateTime,
$date_to: ISODateTime,
$analyze: Boolean
) {
tote_history(
tote_name: $tote_name,
tote_id: $tote_id,
date_from: $date_from,
date_to: $date_to,
analyze: $analyze
) {
request_id
complexity
data {
pageInfo {
hasNextPage
hasPreviousPage
startCursor
endCursor
}
edges {
node {
tote_name
tote_id
action
created_at
}
cursor
}
}
}
}Variables
{
"tote_name": "TOTE-001",
"tote_id": "VG90ZToxMjM0",
"date_from": "2026-07-09T15:30:00Z",
"date_to": "2026-07-09T15:30:00Z",
"analyze": true
}Response
{
"data": {
"tote_history": {
"request_id": "UmVjb3JkOjEyMzQ=",
"complexity": 100,
"data": [{id: "VG90ZUhpc3Rvcnk6MTIzNA=="}]
}
}
}