Is it possible in firebase firestore to get information about the multiple documents are available or using where query we are using react native.
userRef.where('number', '==', '123')
.where('number', '==', '1234')
.get()
.then(r =>{
r.forEach(n => console.log(n))
});
is it possible to get those two documents in response ?
if I use like single where its working fine, how can I use same thing for nested documents compare ?