OBJECT

Room

A room at a location

link GraphQL Schema definition

  • 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
  • }