AppointmentLocation
A location where appointments are held
Fields
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!]}