OBJECT

MessageContent

The content of a user's message to a channel's chat.

link GraphQL Schema definition

1type MessageContent {
2
3# Parsed list of fragments in the message, include emotes, mentions, and
4# plaintext.
5fragments: [MessageFragment!]!
6
7# String representation of the user message.
8text: String!
9
10}