Skip to main content

Note

A message created by an agent in Groove, visible only to other agents.

type Note implements Message, Node {
attachments(
after: String
before: String
first: Int
last: Int
): AttachmentConnection
author: Author
body: String
bodyPlainText: String
cannedReply: CannedReply
channel: Channel!
createdAt: DateTime!
editedAt: DateTime
fromMerge: Boolean
fromMove: Boolean
id: ID!
isNote: Boolean!
rule: Rule
sourceConversation: Conversation
summary: SummaryMessage!
updatedAt: DateTime!
}

Fields

Note.attachments ● AttachmentConnection object common

The files attached to the message, if any.

Note.attachments.after ● String scalar common

Returns the elements in the list that come after the specified cursor.

Note.attachments.before ● String scalar common

Returns the elements in the list that come before the specified cursor.

Note.attachments.first ● Int scalar common

Returns the first n elements from the list.

Note.attachments.last ● Int scalar common

Returns the last n elements from the list.

Note.author ● Author union common

The actor that authored the body.

Note.body ● String scalar common

The body of the message in HTML.

Note.bodyPlainText ● String scalar common

The body of the message in plain text.

Note.cannedReply ● CannedReply object common

The canned reply used for this message.

Note.channel ● Channel! non-null interface common

The channel this message belongs to

Note.createdAt ● DateTime! non-null scalar common

The date and time that the object was created.

Note.editedAt ● DateTime scalar common

The date and time that the object was last updated.

Note.fromMerge ● Boolean scalar common

True if the message comes from a merged conversation; false otherwise.

Note.fromMove ● Boolean scalar common

True if the message was moved from another conversation; false otherwise.

Note.id ● ID! non-null scalar common

Note.isNote ● Boolean! non-null scalar common

True if the message is a note; false otherwise.

Note.rule ● Rule object common

The rule that caused this message to be created.

Note.sourceConversation ● Conversation interface common

The conversation the message was moved from.

Note.summary ● SummaryMessage! non-null object common

The summary of the message.

Note.updatedAt ● DateTime! non-null scalar common

The date and time that the object was last updated.

Interfaces

Message interface common

An individual message, for example an incoming email, an email reply, or a note.

Node interface common

An object with an ID.

Member of

conversationAddNotePayload object ● conversationEditNotePayload object ● conversationToggleNoteReactionPayload object

Implemented by

ChangeTypeUnion union