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": "VG90ZToxMjM0",
    "location_id": "TG9jYXRpb246MTIzNA=="
  }
}

Response

{
  "data": {
    "tote_transfer_to_location": {
      "request_id": "UmVjb3JkOjEyMzQ=",
      "complexity": 100,
      "ok": true
    }
  }
}