ネイティブドライバーを使用して、次のようにdbオブジェクトからコマンドを実行できます。
var MongoClient = require("mongodb").MongoClient;
MongoClient.connect(database, function (err, db) {
if (!err) {
db.command({ distinct: "Messages", key: "session" }, function (err, result) {
//more code here
});
}
});
コレクションオブジェクトからコマンドを実行していることに気づきました。これが問題である可能性があります。