Firestore - read
db.collection("transcripts").get().then((querySnapshot) => {
querySnapshot.forEach((doc) => {
console.log(`${doc.id} => ${JSON.stringify(doc.data())}`);
});
});Listen for realtime updates
Last updated
Was this helpful?