0

如何在刚果蒙戈查询中使用 MongoDB$in查询运算符?这是我不成功的猜测——我在任何地方都找不到关于查询语法的文档。

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

1 回答 1

0

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

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

这也适用于其他运算符,如$gt,$ne等。

于 2013-03-27T23:41:07.083 回答