item_location_delete
Arguments
| Argument | Type | Required | Default | Description |
|---|---|---|---|---|
data | DeleteItemLocationInput! | Yes |
Return Type
Mutation
mutation item_location_delete(
$data: DeleteItemLocationInput!
) {
item_location_delete(
data: $data
) {
request_id
complexity
ok
deleted_ids
}
}Variables
{
"data": {
"ids": ["abc123"]
}
}Response
{
"data": {
"item_location_delete": {
"request_id": "abc123",
"complexity": 987,
"ok": true,
"deleted_ids": "abc123"
}
}
}