有没有办法通过和尚调用'distinct'?

Is there a way to call 'distinct' through monk?

我想在我的 node.js 服务器上执行以下 'query':

MongoDB:

db.example.distinct('field')

预期结果:[value1, value2, ..., etc]

我试过这个 Javascript,但它不起作用:

db.get('example').distinct('field', function (err, array){...});

但我认为 monk 没有定义该方法。 有办法吗?

已添加到和尚。 这是 commit

这是签名

Collection.prototype.distinct = function (field, query, fn) {}

您使用的是最新版本吗?