Answers for "how to find collection data in firestore"

4

get data in from a collection firestore

db.collection("users").get().then((querySnapshot) => {
    querySnapshot.forEach((doc) => {
        console.log(`${doc.id} => ${doc.data()}`);
    });
Posted by: Guest on December-11-2020

Code answers related to "how to find collection data in firestore"

Browse Popular Code Answers by Language