I want get all docs from a collection but on my code nothing is returned like I can see on the log printing the snapshot returned. I can use Storage on my application to store documents, and I can write on Firestore documents too, so the Firebase is correct configured, but it's not reading the docs.
getUsers() {
firebase
.firestore()
.collection("users")
.get()
.then(function(querySnapshot) {
console.log(querySnapshot);
querySnapshot.forEach(function(doc) {
console.log(doc.id, " => ", doc.data());
});
});
}

