I want select from Firestore collection just articles written NOT by me. Is it really so hard?
Every article has field "owner_uid".
let query = docRef.where('role','>',user_role).where('role','<',user_role).get()
This is not functioning as the "not equal" operation in firestore with string values