我正在尝试在 Firestore 查询中实现逻辑 OR 运算符。
db.collection('users').where('company_id', '==', companyId)
.where('role', '==', 'Maker')
.where('role', '==', 'Checker')
.where('role', '==', 'Approver')
.get().then(function(adminsSnapshot){
//Some processing on dataSnapshot
})
但这不是实施 OR 的正确方法。
我希望所有用户都具有“制作者、检查者或审批者”角色。
我将如何在 Firestore 查询中实现 OR?Doc 中没有任何内容。