INPUT_OBJECT

CreateRoomInput

link GraphQL Schema definition

1input CreateRoomInput {
4
2# Deprecated. Use minimumReadMessagesRole instead.
3isPreviewable: Boolean
7
5# Deprecated. Use minimumReadMessagesRole and minimumSendMessagesRole instead.
6minimumAllowedRole: RoomRole
10
8# Minimum role required to read messages in the room.
9minimumReadMessagesRole: RoomRole
13
11# Minimum role required to send messages in the room.
12minimumSendMessagesRole: RoomRole
16
14# The name of the room.
15name: String!
19
17# The topic for the room.
18topic: String!
20}