Is there a way I can combine a GeoFireStore query with a normal Firestore query?
I want to query users which I have stored in a collection named "Users". Each user has fields such as age and weight. Is there a way I can query the users by distance from the user running the search with GeoFire and combine it with FireStore search queries? For instance, I am a user who is looking for someone who is in a 20 mile radius but also wants to find someone who is between 2 years younger or older than them. The Firestore database can filter on multiple fields, but it can only do a range filter on one of those fields. So this query is possible: collection.where("age", ">", 18).where(