I'm building a site where users can post a short text and others can comment on it. I'm using Firebase Authentication to manage users and Firebase Firestore to store the posts.
I have 2 questions:
1st, to store the comments, should I use root level collection? Or sub-collection under the documents of post?
2nd, On my site, users are allowed to change their display name (using Firebase Auth). How can I ensure that the comments and posts will show the updated display name?