Delete Worker Tag
Deletes the tag and the workers associated to it
Example
mutation deleteWorkerTag {
deleteWorkerTag(input: { tid: 10 }) {
integer
}
}
Response
{
"data": {
"deleteWorkerTag": {
"integer": 10
}
}
}
Arguments
input
(DeleteWorkerTagInput!)
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
type DeleteWorkerTagInput {
clientMutationId: String
tid: Int!
}