OBJECT

MessageBody

MessageBody is a way of encoding emote annotated text. The original text is included as content and the parsed emotes are included which indicate the start and end indexes they should replace.

link GraphQL Schema definition

1type MessageBody {
2
3# The text content of the body.
4content: String
5
6# Collection of rune indexed emotes to be replaced clientside.
7emotes: [EmbeddedEmote]
8
9}