Place

type Place {
  # ID
  id: Int!
  
  # Name
  name: String!
  
  # Number
  number: Int!
  
  # Zone ID
  zoneId: Int!
  
  # Get place status at time in millis. Use null for current time
  status(at: Long, until: Long): PlaceStatus!
  
  # Get zone
  zone: Zone!
}

Last updated