OBJECT

RoomMessageContent

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

link GraphQL Schema definition

1type RoomMessageContent {
2
3# Parsed list of fragments in the message, include emotes, mentions, and
4# plaintext.
5fragments: [RoomMessageFragment]! @deprecated( reason: "The Rooms product has been sunset" )
6
7# String representation of the user message.
8text: String! @deprecated( reason: "The Rooms product has been sunset" )
9
10}