Trying to build an android app with Firebase backend.
I read all about it, built an app that syncs with the backend, etc. what I can't figure out is how to make advanced queries without retrieving all the parent.
for example - say I scale to many users, and I want to retrieve only users that are 50 KM around me, I don't want to retrieve ALL the users and then manipulate the data. I want to retrieve ONLY the users I need.
I guess I'm looking for something more SQLish like "GET users WHERE users.location = bla bla bla".
can anyone help me ? thanks!