上周/月/所有NodeJS的日期MongoDB查询组集合

时间:2018-01-17 18:22:18

标签: javascript node.js mongodb

我需要计算所有用户,上周和上个月的用户,按日期分组。

我试过

var project = {
    $project:{
        day: { $dayOfMonth: "$updatedAt" },
        month: { $month: "$updatedAt" },
        year: { $year: "$updatedAt" }
    }
},
group = {   
    "$group": { 
        "_id": { 
            "date": "$updatedAt",
        },  
        "count" : { "$sum" : "$1" }
    }
};

db.collection.aggregate([project, group])...

我需要看起来像

{lastWeek: 12, lastMonth: 20, all: 102}

修改     添加了样本json数据。仅包含用于测试的对象的必要属性

[{
    "_id" : ObjectId("someId"),
    "createdAt" : ISODate("2017-04-08T09:51:44.897Z"),
    "updatedAt" : ISODate("2018-01-08T09:51:55.460Z"),
    "foo1" : null
},{
    "_id" : ObjectId("someId"),
    "createdAt" : ISODate("2017-04-08T09:51:44.897Z"),
    "updatedAt" : ISODate("2017-12-30T09:51:55.460Z"),
    "foo1" : null
},{
    "_id" : ObjectId("someId"),
    "createdAt" : ISODate("2017-04-08T09:51:44.897Z"),
    "updatedAt" : ISODate("2018-01-17T09:51:55.460Z"),
    "foo1" : null
},{
    "_id" : ObjectId("someId"),
    "createdAt" : ISODate("2017-04-08T09:51:44.897Z"),
    "updatedAt" : ISODate("2018-01-01T09:51:55.460Z"),
    "foo1" : null
},{
    "_id" : ObjectId("someId"),
    "createdAt" : ISODate("2017-04-08T09:51:44.897Z"),
    "updatedAt" : ISODate("2017-04-08T09:51:55.460Z"),
    "foo1" : null
}]

1 个答案:

答案 0 :(得分:2)

您可以尝试以下聚合

var today = new Date();
var lastWeek = new Date();
today.setDate(today.getDate() - 7);
var lastMonthFromToday = new Date();
lastMonthFromToday.setMonth(today.getMonth() - 1);

db.col.aggregate(
{"$group":{
    "_id":null,
    "lastWeek":{"$sum":{"$cond":[{$and:[{"$gte":["$updatedAt",lastWeek]}, {"$lte":["$updatedAt",today]}]}, 1, 0]}},
    "lastMonth":{"$sum":{"$cond":[{$and:[{"$gte":["$updatedAt",lastMonthFromToday]}, {"$lte":["$updatedAt",today]}]}, 1, 0]}},
    "all":{"$sum":1}
}})

Mongo 3.4版本:

db.col.aggregate(
{"$facet":{
  "lastWeek":[{"$match":{"updatedAt":{"$gte":lastWeek, "$lte":today}}},{"$count":"count"}],
  "lastMonth":[{"$match":{"updatedAt":{"$gte":lastMonthFromToday, "$lte":today}}},{"$count":"count"}],
  "all":[{"$count":"count"}]
}})