Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在刚果蒙戈查询中使用 MongoDB$in查询运算符?这是我不成功的猜测——我在任何地方都找不到关于查询语法的文档。
$in
(fetch :solutions :where {:user {:in [1 2 3]}})
Kongmongo 查询中的运算符需要$前缀:
$
(fetch :solutions :where {:user {:$in [1 2 3]}})
这也适用于其他运算符,如$gt,$ne等。
$gt
$ne