1
我想僅選擇集合中的那些文檔,其中id
s不包含在給定的數組中。是否有可能與Google Firestore? The official docs認爲,大約只有像基本查詢>,<,==如何選擇不包含在給定數組中的文檔?
基本上我需要Parse
的query.whereKey("playerName", notContainedIn: names)
功能
我想僅選擇集合中的那些文檔,其中id
s不包含在給定的數組中。是否有可能與Google Firestore? The official docs認爲,大約只有像基本查詢>,<,==如何選擇不包含在給定數組中的文檔?
基本上我需要Parse
的query.whereKey("playerName", notContainedIn: names)
功能
不,現在這是不可能的。 Firestore不允許!=
查詢,只有平等和範圍(正如您在鏈接到文檔時所提到的那樣)。
嗯,這很煩人。你知道Firebase是否允許這樣的查詢嗎? –