I am building an app where users log their favourite places. The app allows other users to follow me and see my favourite places in a location.
I have two main datasets right now.
Users - keeps track of personal info as well as who I am following
Places - captures the location and name of the place as well as the person who “liked” it.
I have a map function and I am successfully able to show all the saved places from the “Places” dataset on the map.
Where I am having trouble is curating the map view to only show people who I am following. I have tried adding a condition “Likers contains Current Users Friends” but I get the error that I am trying to show a list rather than an individual user.
I have been trying to crack this nut for a few days now and I am out of ideas.
You can use an advanced filter, simply filter after doing the search. Then, in this filter, add a constraint with this logic: This post's Likers intersect with Current User's Friends: count > 0.
Thanks so much for the reply! I am trying to filter directly on the map and I can’t seem to be able to do advanced filtering. I guess this isnt something you can do on the map?