I have a list of users UIDs in an ArrayList.
Example:
List<String> myUsersUids = new ArrayList<>();
Now I want to query all users documents where their UID field's value exists within myUsersUids list.
Edit: Is that possible to do using "Where" conditions? so I can avoid looping on the list and query each document separately..
example: Is there something like..
.whereExistsIn("userID", myUsersList) .. ?
This will help me add one SnapShotListener to multiple documents, instead of looping and creating a Listener for each document.
Thanks is advance!