mongoose .where tenary operator
Person.find({
$and: [
{ $or: [{date_begin: null}, {date_begin: {$lte : today}}] },
{ $or: [{date_end: null}, {date_end: {$gte : tommorow}}] }
]
}, function (err, results) {
...
}