私は他の答えを得ることができませんでした。おそらく、新しいバージョンのマングースを使用しています( [email protected] 。
これは私のために働いた:
Table1.findOne()
.where({field1: 1})
.sort('-LAST_MOD')
.exec(function(err, doc)
{
var max = doc.LAST_MOD;
// ...
}
);
私は他の答えを得ることができませんでした。おそらく、新しいバージョンのマングースを使用しています( [email protected] 。
これは私のために働いた:
Table1.findOne()
.where({field1: 1})
.sort('-LAST_MOD')
.exec(function(err, doc)
{
var max = doc.LAST_MOD;
// ...
}
);