I want select from Firestore collection just articles written NOT by me. Is it really so hard?
Every article has field "owner_uid".
You can filter the array of objects within the javascript code.
var data=[Object,Object,Object] // this is your object array var newArray = data.filter(function(el) { return el.gender != 'Male'; });