warehouse_product_delete

Arguments

ArgumentTypeRequiredDefaultDescription
dataDeleteWarehouseProductInput!Yes

Return Type

MutationOutput

Mutation

mutation warehouse_product_delete(
  $data: DeleteWarehouseProductInput!
) {
  warehouse_product_delete(
    data: $data
  ) {
    request_id
    complexity
  }
}

Variables

{
  "data": {
    "customer_account_id": "abc123",
    "sku": "abc123",
    "warehouse_id": "abc123"
  }
}

Response

{
  "data": {
    "warehouse_product_delete": {
      "request_id": "abc123",
      "complexity": 987
    }
  }
}