OBJECT

RoomMessageFragment

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

link GraphQL Schema definition

1type RoomMessageFragment {
2
3# Contains an emote or a mentioned user depending on the text of the fragment.
4content: FragmentContent @deprecated( reason: "The Rooms product has been sunset" )
5
6# Plaintext representation of the fragment.
7text: String! @deprecated( reason: "The Rooms product has been sunset" )
8
9}