OBJECT

ModLogsMessageFragment

One parsed part of a message, which may be an emote, mention, or plaintext.

link GraphQL Schema definition

1type ModLogsMessageFragment {
2
3# Contains an emote or a mentioned user depending on the text of the fragment.
4content: FragmentContent
5
6# Plaintext representation of the fragment.
7text: String!
8
9}