如何选择未包含在给定数组中的文档?

时间:2017-10-12 11:03:08

标签: ios swift firebase google-cloud-firestore

我想只从集合中选择那些id未包含在给定数组中的文档。是否可以使用 Google Firestore The official docs仅说基本查询,例如>,<,==

基本上我需要Parse query.whereKey("playerName", notContainedIn: names)功能

1 个答案:

答案 0 :(得分:1)

不,现在这是不可能的。 Firestore不允许!=个查询,只允许相等和范围(正如您在文档链接中提到的那样)。