Answers for "firebase get doc collection"

0

firebase get doc collection

db.collection("restaurants").doc("123").collection("reviews").get().then(querySnapshot => {    
	querySnapshot.forEach(doc => {        
		console.log(doc.id, " => ", doc.data());    
	});
});
Posted by: Guest on May-20-2021

Code answers related to "firebase get doc collection"

Browse Popular Code Answers by Language