Once you have set up the API within your environment or GraphiQL (if not please see this article - https://app.intercom.com/a/apps/wnmvofws/knowledge-hub/article/10816410), this is how you would build a query to pull back property level data
Below is a query that will pull back data on a given defined address - Our API will standardize what is inputted and will display property level and Point of Interest Data on the Zip code level :
query poipull {
address(address: "Insert Address Here") {
address__cherre_address {
tax_assessor_v2__property_address {
bed_count
bath_count
gross_sq_ft
usa_points_of_interest__zip{
industry
business_name
}
}
}
}
}
The below query is more broad where you are able to input a Zipcode and find Point of Interests -
query poipull {
tax_assessor_v2(where: {zip: {_eq: "insert zipcode here"}}) {
bed_count
bath_count
gross_sq_ft
usa_points_of_interest__zip {
industry
business_name
cherre_address__address{
street_address
}
}
}
}
If you have any further questions please reach out to us at Support@cherre.com