tote_transfer_to_location

Arguments

ArgumentTypeRequiredDefaultDescription
dataTransferToteToLocationInput!Yes

Return Type

TransferToteToLocationOutput

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
    }
  }
}