tote_history
Arguments
| Argument | Type | Required | Default | Description |
|---|---|---|---|---|
tote_name | String | No | ||
tote_id | String | No | ||
date_from | ISODateTime | No | ||
date_to | ISODateTime | No | ||
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": "abc123",
"tote_id": "abc123",
"date_from": ISODateTime,
"date_to": ISODateTime,
"analyze": true
}Response
{
"data": {
"tote_history": {
"request_id": "abc123",
"complexity": 987,
"data": ToteHistoryConnection
}
}
}