I know how to query simple collection/doc like so:
const querySnapshot = await
this.authenticationProvider.firestoreDb.collection("members").where("userId",
"==", this.authenticationProvider.user.uid).get();
But could I fetch the data from an inner array using a condition on firestore
?
You can see that where I need to check the projects/memberList
array and after that need to search the email
. Could I do that?