Congomongo“在”查询

时间:2013-03-27 23:39:38

标签: mongodb clojure congomongo

如何在Congomongo查询中使用MongoDB $in query operator?这是我不成功的猜测 - 我无法在任何地方找到关于查询语法的文档。

(fetch :solutions
       :where {:user {:in [1 2 3]}})

1 个答案:

答案 0 :(得分:0)

Congomongo查询中的运算符需要$前缀:

(fetch :solutions
       :where {:user {:$in [1 2 3]}})

这也适用于$gt,例如$ne,{{1}}等。