The propertyType filter is used to return addresses which matches certain property types. Available values are:
| Input | Definition |
|---|---|
| B | Business |
| M | Mixed |
| R | Residential |
| V | Vacant |
| X | Other |
The sample query below returns business addresses that are related to the record specified by the preciselyID.
{
getById(id: "P0000GL3MWS9", queryType: PRECISELY_ID) {
addresses(propertyType: "B") {
data {
preciselyID
propertyType {
value
description
}
}
}
}
}