Talvez você possa usar agregação e uma data final artificialmente alta:
c = db.foo.aggregate([
{$project: {
next_time: 1,
nlt: { $ifNull: [ "$next_time", new ISODate("9000-01-01") ] }
}
}
,
{$sort: { "nlt": 1}}
]);
c.forEach(function(r) { printjson(r); });
Como alternativa, se a maioria do material tiver nulos e você não quiser lidar com esses documentos, filtre-os e apenas
$sort
o restante:db.foo.aggregate([
{$match: {"nt": {$exists: true}}}
,
{$sort: { "nt": 1}}
]);