tote_transfer_to_location
Arguments
| Argument | Type | Required | Default | Description |
|---|---|---|---|---|
data | TransferToteToLocationInput! | Yes |
Return Type
Mutation
mutation tote_transfer_to_location(
$data: TransferToteToLocationInput!
) {
tote_transfer_to_location(
data: $data
) {
request_id
complexity
ok
}
}Variables
{
"data": {
"tote_id": "abc123",
"location_id": "abc123"
}
}Response
{
"data": {
"tote_transfer_to_location": {
"request_id": "abc123",
"complexity": 987,
"ok": true
}
}
}