conversationTag
Add one or more tags to a Conversation.
For example:
mutation(
$conversationId: ID!,
$tagIds: [ID!]!
) {
conversationTag(
input: {
conversationId: $conversationId,
tagIds: $tagIds
}
) {
changesetId
conversation {
... on Conversation {
id
tags {
edges {
node {
id
name
}
}
}
}
}
diffs {
query
delta
}
errors {
path
message
}
}
}
To untag a conversation see conversationUntag.
conversationTag(
input: ConversationTagInput!
): ConversationTagPayload
Arguments
conversationTag.input ● ConversationTagInput! non-null input common
Parameters for ConversationTag
Type
ConversationTagPayload object common
Autogenerated return type of ConversationTag