mongodb'sql,如何在猫鼬中使用

时间:2018-11-06 09:51:37

标签: mongodb mongoose

这在机器人3T中执行。可行。

db.getCollection('oplog.rs').count({ op:{ $in: ['i','u', 'd'] }, ts: { $gt: Timestamp(1541487000, 1)  } }) 

如何与猫鼬一起使用?

 let result = await OplogRs.countDocuments({
    op: { $in: ['i', 'u', 'd'] },
    ts: { $gt: 'Timestamp(1541400600, 1)' }
  });

我什么也得不到。

0 个答案:

没有答案