I have my nodes in Firebase as:
users---
|
uid---
|
phone:
name:
I am looking for the IN
implementation here. I want to check which enteries from a list of phone numbers are present in my database and then, fetch those enteries.
In SQL databases, equivlent query may be:
select phone from users where phone IN ('phone1','phone2','phone3',...)
How can I achieve this in my Android Firebase project?