The buildingType filter is used to return buildings matching a certain type. Available input values are:
| Input | Definition |
|---|---|
| B | Business |
| M | Mixed |
| R | Residential |
| X | Unknown |
Below is a sample query showing usage of the buildingType in buildings filter:
{
getById(id: "P00000I7PO0A", queryType: PRECISELY_ID) {
buildings(buildingType: "M") {
data {
buildingType {
value
description
}
}
}
}
}