这在机器人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)' }
});
我什么也得不到。