The residentialBusinessIndicator filter is used to return serviacability information
which matches the the type of residential building indicator.The available filter values
for residentialBusinessIndicator are:
| Input | Definition |
|---|---|
| R | Residential |
| B | Business |
| M | Mixed |
Below is a sample query showing usage of the residentialBusinessIndicator in buildings filter:
{
getById(id: "P00000I7PO0A", queryType: PRECISELY_ID) {
addresses {
data {
serviceability(residentialBusinessIndicator: "M") {
data {
residentialBusinessIndicator {
value
description
}
}
}
}
}
}
}