Mongoose Aggregate:限制$ group中的记录数

时间:2014-08-29 11:36:28

标签: node.js mongodb mongoose aggregation-framework

我正在尝试使用Mongoose Aggregate方法转换这句话:

"对于有给定oid的每个玩家,选择已经玩过最多的游戏"。 这是我的游戏架构:

gameSchema = new mongoose.Schema({
     game_name:{type:String},
     game_id:{type:String},
     oid:{type: String},
     number_plays:{type:Number,default:0},
    })
Game = mongoose.model('Game', gameSchema);

以下是我正在使用的代码:

var allids = ['xxxxx','yyyy'];
Game.aggregate([
    {$match: {'oid': {$in:allids}}},
    {$sort: {'number_plays': -1}},
    {$group: {
        _id: '$oid', 
        plays:{$push:"$number_plays"}, 
        instructions:{$push:"$game_instructions"}
    }}
], function(err,list){
    console.log(list);
    res.end();
});

上面的代码返回以下内容:

[ { _id: 'yyyy', plays: [ 10,4,5 ] },
  { _id: 'xxxxx',
    plays: [ 28, 14, 10, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0 ] } ]

问题在于它会返回所有游戏,而不是主要玩游戏的游戏。所以我的问题是:是否可以限制$ group中填充的字段?

1 个答案:

答案 0 :(得分:2)

您可以使用$first从排序管道的每个组中的第一个doc获取值:

var allids = ['xxxxx','yyyy'];
Game.aggregate([
    {$match: {'oid': {$in:allids}}},
    {$sort: {'number_plays': -1}},
    {$group: {
        _id: '$oid', 
        game_name: {$first: "$game_name"}, 
        game_id: {$first: "$game_id"}, 
        number_plays: {$first:"$number_plays"}
    }}
], function(err,list){
    console.log(list);
    res.end();
});

由于您已在管道前一阶段的number_plays降序排序,因此每个oid组的文档中的值最高{{1} }。