angular firestore query code example
Example 1: how to query in firestore
db.collection("cities").where("capital", "==", true)
.get()
.then(function(querySnapshot) {
querySnapshot.forEach(function(doc) {
console.log(doc.id, " => ", doc.data());
});
})
.catch(function(error) {
console.log("Error getting documents: ", error);
});
Example 2: firestoreConnect query
firestoreConnect((props) => {
let propertyDocRef = firebase.firestore().collection('properties').doc(props.propertyId)
if (!props.propertyId) return []
return [
{
collection : 'properties',
doc : props.propertyId,
subcollections : [
{ collection: 'tasks' }
],
storeAs : 'tasks',
orderBy : [
'createdAt',
'desc'
]
},
{
collection : 'likes',
where : [
[
'property',
'==',
propertyDocRef
]
]
}
]
})