Skip to main content

tagUpdate

Updates an Inbox tag.

mutation(
$color: String,
$name: String,
$tagId: ID!,
) {
tagUpdate(
input: {
color: $color,
name: $name,
tagId: $tagId,
}
) {
tag {
id
color
name
}
errors {
path
message
}
}
}

To change tags applied to a conversation see the conversationTag or conversationUntag mutations.

tagUpdate(
input: TagUpdateInput!
): TagUpdatePayload

Arguments

tagUpdate.input ● TagUpdateInput! non-null input common

Parameters for TagUpdate

Type

TagUpdatePayload object common

Autogenerated return type of TagUpdate