tagCreate
Creates an Inbox tag.
mutation(
$color: String,
$name: String!,
) {
tagCreate(
input: {
color: $color,
name: $name,
}
) {
tag {
id
color
name
}
errors {
path
message
}
}
}
To apply an existing tag to a conversation see conversationTag.
tagCreate(
input: TagCreateInput!
): TagCreatePayload
Arguments
tagCreate.input ● TagCreateInput! non-null input common
Parameters for TagCreate
Type
TagCreatePayload object common
Autogenerated return type of TagCreate