📜  包含在 where 子句中 firestore 颤振 - 任何代码示例

📅  最后修改于: 2022-03-11 14:56:25.158000             🧑  作者: Mango

代码示例1
var snap = await Firestore.instance
    .collection('user_posts')        
    .where("confirmations", arrayContains: user.id)
    .getDocuments();