I have created a social feed in my app for users to share posts, much like Facebook. Users must ‘friend’ each other to see their posts. The social feed should show the user’s friends’ posts as well as the user’s own posts.
For the “Friending” system, each user has a Following property and a Followers property for the way I built it. Each of these properties have an identical list of users for the LoggedIn User. To me, this seems like one filter on the “Social Feed” list to show posts created by any users in the LoggedIn User’s “Following” property OR another filter for posts created by the LoggedIn User. When I set both of these, the social feed list is empty. What am I missing here?
I’m sure there is more info I can share to help find a solution but I don’t know what else to share at the moment. Thanks in advance for any help!