I'm using Cloud Firestore on my mobile app. I want to get contents from users I follow. Right now those:
So I'm trying the following query to get contents from people I follow.
ref = FirebaseFirestore.getInstance().collection("topics");
ref.whereEqualTo("username","user1");
ref.whereEqualTo("username","user2");
But when I use this query it only shows posts from first user (user1).
Also what If I follow 10K users. What's the best way to get latest posts from them?