OBJECT

RoomMessageEdge

Element in a list of messages.

link GraphQL Schema definition

1type RoomMessageEdge {
2
3# Opaque cursor describing this edge's position in the paginated list.
4cursor: Cursor! @deprecated( reason: "The Rooms product has been sunset" )
5
6# The message.
7node: RoomMessageItem @deprecated( reason: "The Rooms product has been sunset" )
8
9}