我需要获取好友列表其中
(friendshipStatus == friendshipStatusRequested && senderId == currentUserId)
似乎firebase不支持 AND,OR 或子查询。有什么方法可以解决这个问题吗?
答案 0 :(得分:2)
不幸的是Firebase不支持它。您可以做的是使用这两个值的混合创建一个新属性friendshipUser
。
friendshipUser = "friendshipStatusRequested_currentUserId"