I have an array with usernames and would like to query that again the available users in the database and get their details (age, number, address, etc.).
How to do that in Firebase using Swift? I was thinking of doing a for loop and within it I could append to array of type Users, but doesn't that mean that number of requests made to Firebase will equal to number of users in the array? That can't be the way to go...
Thanks,