how to search collection within collection firebase flutter?
how to search the collection within the collection firebase flutter?
Example
collection ="listOfDoctors"
document="sdfdfseewew"this id
collection="hospital"
document="sssfasf" this id
Fields
{
'':'',
'specialties':'h1',
'':'',
...
}
How do I search in specialties??
How do I get over iddocument the first??
getData() async {
final listOfDoctors = await FirebaseFirestore.instance
.collection('listOfDoctors')
.where('specialties', arrayContainsAny: ['h1'])
.get();
print(listOfDoctors.size);
}