Tak:
var currentTime = new Date();
items.find({
'time.start': {$lt: currentTime},
'time.end': {$gt: currentTime}
});
Który znajdzie dokumenty, w których aktualny czas znajduje się między start
i end
razy w dokumencie.
Tak:
var currentTime = new Date();
items.find({
'time.start': {$lt: currentTime},
'time.end': {$gt: currentTime}
});
Który znajdzie dokumenty, w których aktualny czas znajduje się między start
i end
razy w dokumencie.