Soft Batch Delete Miners
Soft-deletes workers in a batch
Example
mutation softBatchDeleteMiners {
softBatchDeleteMiners(input: { minerIds: 12345678 }) {
miners {
workerName
deleted
}
}
}
Response
{
"data": {
"softBatchDeleteMiners": {
"miners": [
{
"workerName": "worker1",
"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 SoftBatchDeleteMinersInput {
clientMutationId: String
minerIds: [Int]!
}