Если вы хотите получить документ , на который ссылается поле renter
типа DocumentReference
, просто сделайте следующее:
snapshot.get("renter").get().then(doc => {
if (doc.exists) {
console.log("Document data:", doc.data());
} else {
// doc.data() will be undefined in this case
console.log("No such document!");
}
}).catch(error => {
console.log("Error getting document:", error);
});
или
let snap = await snapshot.get("renter").get();