conversationLog
Creates a new conversation starting with a note.
mutation ConversationLog(
$assigned: AssignmentInput,
$channelId: ID!,
$message: NoteMessageInput!,
$state: ConversationState,
$cannedReplyId: ID,
$draftId: String,
$snoozeUntil: DateTime,
$skipNotifications: Boolean
) {
conversationLog(input: {
assigned: $assigned,
channelId: $channelId,
message: $message,
state: $state,
cannedReplyId: $cannedReplyId,
draftId: $draftId,
snoozeUntil: $snoozeUntil,
skipNotifications: $skipNotifications
}) {
changesetId
conversation {
id
subject
contact {
id
email
}
}
diffs {
query
delta
}
errors {
path
message
}
}
}
conversationLog(
input: ConversationLogInput!
): ConversationLogPayload
Arguments
conversationLog.input ● ConversationLogInput! non-null input common
Parameters for ConversationLog
Type
ConversationLogPayload object common
Autogenerated return type of ConversationLog