propertiesSearch
Search for properties that are already in Kraken and match the search term.
Arguments
The search term. It can be an address or a meter point identifier.
Returns
[PropertySearchResult!]!Possible Errors
Allowed Viewers
Required Permissions
Can query propertyQuery Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query PropertiesSearch($searchTerm: String!) {
propertiesSearch(searchTerm: $searchTerm) {
property {
...PropertyTypeFragment
}
score
}
}
Variables
{
"searchTerm": "director-war-top-air-agent"
}
Response
{
"data": {
"propertiesSearch": [
{
"property": PropertyType,
"score": "1.0"
}
]
}
}