I have this path to a subcollection in a Firebase Firestore: Team/TeamName/Meetings/First/Data. I wonder if there is any way how to get the docs in the data subcollection based on the values (fields) in the first doc (parent doc).
I tried this:
db.collection("Team")
.doc("TeamName")
.collection('Meetings').where('0', '==', "some data")
.where('3', '==', "doc data")
.where('4', '==', "something in textfiel").collection("Data")
But this approach does not work.