tagDelete
Deletes an Inbox tag.
mutation(
$tagId: ID!,
) {
tagDelete(
input: {
tagId: $tagId,
}
) {
deletedTagId
errors {
path
message
}
}
}
To remove an existing tag from a conversation see conversationUntag.
tagDelete(
input: TagDeleteInput!
): TagDeletePayload
Arguments
tagDelete.input ● TagDeleteInput! non-null input common
Parameters for TagDelete
Type
TagDeletePayload object common
Autogenerated return type of TagDelete