OBJECT

RoomView

DEPRECATED A RoomView represents the authenticated user's self connection to a room, and includes the user's settings and permissions.

link GraphQL Schema definition

1type RoomView {
2
3# Whether the user has archived the room.
4isArchived: Boolean! @deprecated( reason: "The Rooms product has been sunset" )
5
6# Whether the user has muted the room.
7isMuted: Boolean! @deprecated( reason: "The Rooms product has been sunset" )
8
9# Whether the user has unread messages in the room.
10isUnread: Boolean! @deprecated( reason: "The Rooms product has been sunset" )
11
12# Last time the user read a message in the room.
13lastReadAt: Time @deprecated( reason: "The Rooms product has been sunset" )
14
15# The permissions the authenticated user has in the room.
16permissions: RoomPermissions @deprecated( reason: "The Rooms product has been sunset" )
17
18# The room the room view belongs to.
19room: Room! @deprecated( reason: "The Rooms product has been sunset" )
20
21# The number of mentions for the user in the room that the user has not read.
22unreadMentionCount: Int! @deprecated( reason: "The Rooms product has been sunset" )
23
24}