building_features (nightly)

Fetch a feature at a building level, where a feature is a complex measurement or insight, possibly with multiple results.

feature_name should be set to one of the features outlined in Metrics and Features

feature_value is the result.

// query
query Building_features(
  $limit: Int,
  $offset: Int,
  $order_by: [building_features_order_by!],
  $where: building_features_bool_exp
) {
  building_features(
    limit: $limit,
    offset: $offset,
    order_by: $order_by,
    where: $where
  ) {
    building_id
    date_time_end
    date_time_start
    feature_name
    feature_value
    granularity
    group_id
    id
    version
  }
}

Last updated