I added authentication from firebase to my client app and am using firestore for the client to create posts.
const docRef = await addDoc(collection(db, "posts"), {
content: "foo"
});
But when I check in firestore, I don’t see any associated user to a post. How do I see this? I could probably add a uid field but it’s not a guarantee that all docs will be associated to a user.