Skip to content

Room

A room at a location

Fields

id · ID! · required · Unique ID for this room
limit_to_one · Boolean! · required · When true, there can only be one appointment at a time in the room
name · String · Name of the room

Used By

Definition

"""
A room at a location
"""
type Room {
"""
Unique ID for this room
"""
id: ID!
"""
When true, there can only be one appointment at a time in the room
"""
limit_to_one: Boolean!
"""
Name of the room
"""
name: String
}