Lookup Types

A location has many different ways to be found. There are different location types such as property , city, county, neighborhood, county subdivision, zcta, cd, and state .

All location types share similar lookup methods, with the exception of property where property has three additional lookups.

FSID

Look up a property by fsid. See Data Notes for more information about FSID.

query {
    <locationType>(fsid: Int!)
}

Coordinate

Search for a property by coordinate pairs (latitude/longitude). Given a point, a coordinate lookup will check if that point intersects with the boundary

query {
    <locationType>ByCoordinate(lat: Float!, lng: Float!)
}

Last updated