To, czego chcesz, to wykorzystanie struktury agregacji z aggregate()
polecenie, przynajmniej do znalezienia jednej daty, jak pytasz:
SomeSchema.aggregate(
[
{ "$match": {
"date": {
"$gte": new Date("2014-05-08"), "$lt": new Date("2014-05-09")
}
}},
{ "$group": {
"_id": "$some_item",
"count": { "$sum": 1 }
}}
],
function(err,result) {
// do something with result
}
);
Jeśli szukasz konkretnie „liczby” w kilku terminach, możesz zrobić coś takiego:
SomeSchema.aggregate(
[
{ "$match": {
"date": {
"$gte": new Date("2014-05-01"), "$lt": new Date("2014-06-01")
}
}},
{ "$group": {
"_id": {
"year": { "$year": "$date" },
"month": { "$month": "$date" },
"day": { "$dayOfMonth": "$date" }
}
"count": { "$sum": 1 }
}}
],
function(err,result) {
// do something with result
}
);
A to daje grupowanie „na dzień”. Poszukaj operatorów agregacji dat w dokumentacji, jeśli chcesz to zrobić dalej.