मुझे काम करने के अन्य जवाब नहीं मिले। शायद मैं Mongoose के नए संस्करण का उपयोग कर रहा हूं ([email protected] )।
इसने मेरे लिए काम किया:
Table1.findOne()
.where({field1: 1})
.sort('-LAST_MOD')
.exec(function(err, doc)
{
var max = doc.LAST_MOD;
// ...
}
);