API Docs
Soft Batch Delete Miners

Soft-deletes workers in a batch

Example

mutation softBatchDeleteMiners {
  softBatchDeleteMiners(input: { minerIds: 17026121 }) {
    miners {
      workerName
      deleted
    }
  }
}

Response

{
  "data": {
    "softBatchDeleteMiners": {
      "miners": [
        {
          "workerName": "prod1",
          "deleted": true
        }
      ]
    }
  }
}

Arguments

input (SoftBatchDeleteMinersInput!)

The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.

Type

SoftBatchDeleteMinersPayload

The output of our softBatchDeleteMiners mutation.