Skip to content

Singulars2021/blueprint-firestore-usage

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

"# blueprint-firestore-usage"

TODO

We need to implement a method to retrieve all the collections from a collections, for example, to retrieve all the pictures from the animals

db.collection("restaurants").doc("123").collection("reviews").get()
.then(querySnapshot => {
    querySnapshot.forEach(doc => {
        console.log(doc.id, " => ", doc.data());
    });
});

About

Some examples about how to use the firestore database

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published