My firebase DB looks like
Now I want to query the database such that I take all the users whose email id is in a query list.
For example in the above shown database structure, if I want to make a query such that find the users where username in ["allen20252482", "arne19712450"] which can give me two users.
Is it possible?
Currently I can query like https://xyz.firebaseio.com/users.json
to get the complete user node data , But is it possible to filter like where I take only those users whose username is in the given query list?
I am using REST API endpoint to query the Firebase DB.
Any suggestion is very much appreciated