标签: ios swift firebase google-cloud-firestore
我想只从集合中选择那些id未包含在给定数组中的文档。是否可以使用 Google Firestore ? The official docs仅说基本查询,例如>,<,==
id
基本上我需要Parse query.whereKey("playerName", notContainedIn: names)功能
Parse
query.whereKey("playerName", notContainedIn: names)
答案 0 :(得分:1)
不,现在这是不可能的。 Firestore不允许!=个查询,只允许相等和范围(正如您在文档链接中提到的那样)。
!=