API Docs
Worker Management
Delete Worker Tag

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!
}
  • clientMutationId (String) An arbitrary string value with no semantic meaning. Will be included in the payload verbatim. May be used to track mutations by the client.

  • tid (Int!)

Type

DeleteWorkerTagPayload

The output of our deleteWorkerTag mutation.

type DeleteWorkerTagPayload {
  clientMutationId: String
  integer: Int
  query: Query
}
Fields
  • clientMutationId (String) The exact same clientMutationId that was provided in the mutation input, unchanged and unused. May be used by a client to track mutations.

  • integer (Int)

  • query (Query)