OBJECT

ModLogsMessageContent

The content of a user's message to a room.

link GraphQL Schema definition

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