Skip to main content

conversationUnread

Sets a conversation's state to UNREAD.

For example:

mutation(
$conversationId: ID!,
) {
conversationUnread(
input: {
conversationId: $conversationId,
}
) {
changesetId
conversation {
... on Conversation {
id
state
}
}
diffs {
query
delta
}
errors {
path
message
}
}
}
conversationUnread(
input: ConversationUnreadInput!
): ConversationUnreadPayload

Arguments

conversationUnread.input ● ConversationUnreadInput! non-null input common

Parameters for ConversationUnread

Type

ConversationUnreadPayload object common

Autogenerated return type of ConversationUnread