标签: google-cloud-firestore flutter-web
在Firestore中,我使用了一个数组字段,即包含值[“ A”,“ B”,“ C”]的字母。我需要使用Firestore查询来收集所有以A和B作为数组元素的文档。我尝试使用in和wherein,但它用作OR查询而不是AND。
in
wherein
stream: firestore .collection('data') .where("alphabets", 'in', ["A", "B"]) .onSnapshot,