如何在Firebase中执行AND查询?

时间:2017-11-22 12:18:36

标签: ios swift firebase firebase-realtime-database

enter image description here

我需要获取好友列表其中

(friendshipStatus == friendshipStatusRequested && senderId == currentUserId)

似乎firebase不支持 AND,OR 或子查询。有什么方法可以解决这个问题吗?

1 个答案:

答案 0 :(得分:2)

不幸的是Firebase不支持它。您可以做的是使用这两个值的混合创建一个新属性friendshipUser

friendshipUser = "friendshipStatusRequested_currentUserId"