I want to do something like this:
firestore().collection('users').collection("account").where('email', '==', "example@gmail.com").get();
I want to get user's data among users who has a specific email. But the problem here is that the email is in a subCollection.
How to do it?