I want to get posts from a particular group of users.
So I need a query like this:
postCollectionRef.whereValueInArray("by_uid", userList).get();
Basically only getting posts which have the field "by_uid" in userList. Is there any way to achieve this?