tote_clear

Arguments

ArgumentTypeRequiredDefaultDescription
dataClearToteInput!Yes

Return Type

ClearToteOutput

Mutation

mutation tote_clear(
  $data: ClearToteInput!
) {
  tote_clear(
    data: $data
  ) {
    request_id
    complexity
    ok
  }
}

Variables

{
  "data": {
    "tote_id": "abc123",
    "return_inventory": true
  }
}

Response

{
  "data": {
    "tote_clear": {
      "request_id": "abc123",
      "complexity": 987,
      "ok": true
    }
  }
}