Skip to content

Instantly share code, notes, and snippets.

@Chizaram-Igolo
Created July 30, 2021 14:16
Show Gist options
  • Save Chizaram-Igolo/c4335786cf827718f560d144ae8a2da7 to your computer and use it in GitHub Desktop.
Save Chizaram-Igolo/c4335786cf827718f560d144ae8a2da7 to your computer and use it in GitHub Desktop.
db.collection("users").get().then((querySnapshot) => {
querySnapshot.forEach((doc) => {
console.log(`${doc.id} => ${doc.data()}`);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment