Skip to content

RoomInput

Payload for a Room

Fields

_destroy · Boolean · If true, the room will be deleted
id · ID · The ID of the room
limit_to_one · Boolean · If true, only one user can be in the room at a time
name · String · The graphql_name of the room

Used By

Definition

"""
Payload for a Room
"""
input RoomInput {
"""
If true, the room will be deleted
"""
_destroy: Boolean
"""
The ID of the room
"""
id: ID
"""
If true, only one user can be in the room at a time
"""
limit_to_one: Boolean
"""
The graphql_name of the room
"""
name: String
}