Skip to main content

conversationUnfollow

Removes one or more agents as followers from a conversation.

For example:

mutation(
$conversationId: ID!,
$followerIds: [ID!]!
) {
conversationUnfollow(
input: {
conversationId: $conversationId,
followerIds: $followerIds
}
) {
changesetId
conversation {
... on Conversation {
id
followers {
edges {
node {
id
email
}
}
}
}
}
diffs {
query
delta
}
errors {
path
message
}
}
}

To follow a conversation see conversationFollow.

conversationUnfollow(
input: ConversationUnfollowInput!
): ConversationUnfollowPayload

Arguments

conversationUnfollow.input ● ConversationUnfollowInput! non-null input common

Parameters for ConversationUnfollow

Type

ConversationUnfollowPayload object common

Autogenerated return type of ConversationUnfollow