Firestore sorgusunda mantıksal OR operatörünü çalıştırmayı deniyorum.Firestore sorgusunda OR uygulanıyor - Firebase firestore
db.collection('users').where('company_id', '==', companyId)
.where('role', '==', 'Maker')
.where('role', '==', 'Checker')
.where('role', '==', 'Approver')
.get().then(function(adminsSnapshot){
//Some processing on dataSnapshot
})
Ama bu doğru uygulamak için bir yol VEYA değildir.
Tüm kullanıcıların 'Maker, Checker veya Approver' rollerini istiyorum.
Nasıl firestore sorgusunda OR uygularım? Doc'ta hiçbir şey yok.
Varsayılan rol nedir? – Hareesh