I am from MySQL so I design parse.com table like so
Vehicle | license, year, & pool_id
Pool | address & city_id
City | name
Pool_id in vehicle pointer to Pool, City_id in pool pointer to city.
In mySQL we can Join three table and use where clause.
In the relational queries docs says
--data-urlencode 'where={"post":{"__type":"Pointer","className":"Post","objectId":"8TOXdXf3tz"}}'
Which query relation 1 table based on object id
How I query to get vehicle where city name = "somecity"?