OBJECT
RoomMessage
DEPRECATED A message sent from a user to a room.
link GraphQL Schema definition
1 type RoomMessage { 2 3 # The text and emoticon content of a message. 4 : RoomMessageContent! @deprecated( reason: "The Rooms product has been sunset" ) 5 6 # Time the message was deleted or purged. Null if the message is not deleted. 7 : Time @deprecated( reason: "The Rooms product has been sunset" ) 8 9 # UUID of the message. 10 : ID! @deprecated( reason: "The Rooms product has been sunset" ) 11 12 # The room the message was sent in. 13 : Room! @deprecated( reason: "The Rooms product has been sunset" ) 14 15 # The user that sent the message. 16 : User! @deprecated( reason: "The Rooms product has been sunset" ) 17 18 # Time the message was sent. 19 : Time! @deprecated( reason: "The Rooms product has been sunset" ) 20 21 }