OBJECT
A location where appointments are held
type AppointmentLocation {# Whether the client can select this location or notclients_can_book: Boolean # Whether the location has any roomshas_rooms: Boolean # The unique identifier of the appointmentid: ID! # The location (in plain text)location: String # The rooms at the locationrooms: [Room!] }