I have a firebase collection with documents containing info of all posts from users, i am wanting to retrieve all posts from specific user.
Each document has the owners UID, is there a way to query firebase to get all documents in a collection with the ownersUID being the same as the current users UID.
For example something like this.
firebase.collection("collectionName").getdocumentswhere("OwnerUID" == user.UID)
Which i can then use to display and do what i want with
Cheers in advance!