# sites

Refresh Interval: hourly.

A site represents a contiguous area on a floor that is covered by the InnerSpace solution.  Most often, an entire floor is covered, thus the area of a site is no different than a floor.  However, some floors are very large, thus only certain areas of the floor are covered - in this case, a floor may have multiple 'sites'.

Retrieve a list of sites (typically a floor) available in a building.

```graphql
// query
query MyQuery {
  SITE(where: {BUILDING_ID: {_eq: 71}}) {
    ALTITUDE
    BUILDING_ID
    FLOOR_ID
    ID
    LATITUDE
    LONGITUDE
    SITE_CODE
    TIME_ZONE
  }
}

```
