I'm using Angular 6 anf AngularFire2.
So, the task is to get all Collections where publish:true.
and the path to that Collection in my case is v4/users/<userKey>/collections/<collectionKey>/
Now, my question is, is it possible to get all of publish:true collection with one query?
Or do I have to make multiple queries in this case? Like:
- get all users
- for every user get all collections where
publish:true
