conversationAddNote
Create a note in a conversation.
mutation(
$conversationId: ID!,
$body: String!,
$draftId: String,
$state: ConversationState,
$snoozedUntil: DateTime,
$attachments: [EmailAttachmentInput],
$skipNotifications: Boolean
) {
conversationAddNote(
input: {
conversationId: $conversationId,
body: $body,
draftId: $draftId,
state: $state,
snoozedUntil: $snoozedUntil,
attachments: $attachments,
skipNotifications: $skipNotifications
}
) {
changesetId
conversation {
id
}
message {
id
}
deletedDraftId
errors {
path
message
}
}
}
conversationAddNote(
input: conversationAddNoteInput!
): conversationAddNotePayload
Arguments
conversationAddNote.input ● conversationAddNoteInput! non-null input common
Parameters for conversationAddNote
Type
conversationAddNotePayload object common
Autogenerated return type of conversationAddNote