[Solved] HOW TO ACCES ALL DOCUMENT FROM SUBCOLLECTION OF ALL DOCUMENT IN PYTHON [closed]
If I understand your post correctly you want to access a specific subcollection of all documents. If so, you are looking for a collection group query, which reads documents from all collections with a specific name. Accessing that in Python is (according to the documentation linked above) done with: museums = db.collection_group(u’landmarks’)\ .where(u’type’, u’==’, u’museum’) … Read more