Skip to main content

conversationEditNote

Edit a note in a conversation.

mutation(
$messageId: ID!,
$body: String!,
$attachments: [EmailAttachmentInput],
$skipNotifications: Boolean
) {
conversationEditNote(
input: {
messageId: $messageId,
body: $body,
attachments: $attachments,
skipNotifications: $skipNotifications
}
) {
changesetId
conversation {
id
}
message {
id
}
errors {
path
message
}
}
}
conversationEditNote(
input: conversationEditNoteInput!
): conversationEditNotePayload

Arguments

conversationEditNote.input ● conversationEditNoteInput! non-null input common

Parameters for conversationEditNote

Type

conversationEditNotePayload object common

Autogenerated return type of conversationEditNote