Skip to content

AppointmentLocation

A location where appointments are held

Fields

clients_can_book · Boolean! · required · Whether the client can select this location or not
has_rooms · Boolean · Whether the location has any rooms
id · ID! · required · The unique identifier of the appointment
location · String · The location (in plain text)
rooms · [Room!] · The rooms at the location

Used By

Definition

"""
A location where appointments are held
"""
type AppointmentLocation {
"""
Whether the client can select this location or not
"""
clients_can_book: Boolean!
"""
Whether the location has any rooms
"""
has_rooms: Boolean
"""
The unique identifier of the appointment
"""
id: ID!
"""
The location (in plain text)
"""
location: String
"""
The rooms at the location
"""
rooms: [Room!]
}