Home > Net >  how to access firestore subcollection using cloud functions
how to access firestore subcollection using cloud functions

Time:05-15

i have the following database model: car Workshops collection which is the root collections, and it has collections based on car Brands for example car Workshops ==> KIA(collection) and KIA collection have some fields and another sub collections called workshops

as following car Workshops ==> Kia (collection) ==> workshops

so i wants my code to return the wokrshops which is inside kia collection

screenshots of my database

enter image description here

CodePudding user response:

U can use collection group query with specified document id. Try this, its work for me. CollectionGroupQuery but limit search to subcollections under a particular document

  • Related