I have a collection tree like
- game (collection)
- FPS (document)
- CS:GO (collection)
- Valorant (collection)
- etc (document)
I am trying to retrieve all the collections from FPS but firebase is returning empty map {}.
Do I really have to make .get()
operation to each collections, even if I just need collections that belong to FPS
?
CodePudding user response:
Short answer: yes.
Currently, you can't query multiple collections at once.