Skip to main content

conversationForward

Forwards a conversation.

mutation(
$conversationId: ID!,
$body: String!,
$to: Email!,
$cc: [Email],
$bcc: [Email],
$subject: String,
$attachments: [EmailAttachmentInput],
$cannedReplyId: ID,
$draftId: String,
$state: ConversationState,
$snoozeUntil: DateTime
$agentId: ID,
$teamId: ID,
$channelId: ID,
$skipNotifications: Boolean
) {
conversationForward(
input: {
conversationId: $conversationId,
body: $body,
to: $to,
cc: $cc,
bcc: $bcc,
subject: $subject,
attachments: $attachments,
cannedReplyId: $cannedReplyId,
draftId: $draftId,
state: $state,
snoozeUntil: $snoozeUntil
agentId: $agentId,
teamId: $teamId,
channelId: $channelId,
skipNotifications: $skipNotifications
}
) {
changesetId
conversation {
id
}
message {
id
}
deletedDraftId
diffs {
query
delta
}
errors {
path
message
}
}
}
conversationForward(
input: ConversationForwardInput!
): ConversationForwardPayload

Arguments

conversationForward.input ● ConversationForwardInput! non-null input common

Parameters for ConversationForward

Type

ConversationForwardPayload object common

Autogenerated return type of ConversationForward