5日経過したカットオフ時間を計算してから、find
を実行します $lt
を使用する 演算子と計算されたカットオフ:
var cutoff = new Date();
cutoff.setDate(cutoff.getDate()-5);
MyModel.find({modificationDate: {$lt: cutoff}}, function (err, docs) { ... });
5日経過したカットオフ時間を計算してから、find
を実行します $lt
を使用する 演算子と計算されたカットオフ:
var cutoff = new Date();
cutoff.setDate(cutoff.getDate()-5);
MyModel.find({modificationDate: {$lt: cutoff}}, function (err, docs) { ... });