使用聚合将MongoDB查询转换为PHP的问题

I have the following (working) MongoDB query to generate a list of the hashtag count.

db.twitter.aggregate([
    { 
        $group: { 
            _id: "$status.entities.hashtags.text", 
            hashtags: { 
                $addToSet : "$status.entities.hashtags.text" 
            }
        }
    },
    { $unwind : "$hashtags" }, 
    { $unwind : "$hashtags" },
    { $group : { _id : "$hashtags", count: { $sum : 1 } } },
    { $sort : { count : -1, _id : 1 } }
]);

Now I try to convert this query to PHP code (for laravel):

$cursor = DB::collection('twitter')->raw(function($collection)
{
    return $collection->aggregate(array(
        array(
            '$group' => array(
                '_id' => '$status.entities.hashtags.text', 
                'hashtags' => array(
                    '$addToSet' => '$status.entities.hashtags.text',
                ),
            ),
        ),
        array(
            '$unwind' => '$hashtags',
        ),
        array(
            '$unwind' => '$hashtags',
        ),
        array(
            '$group' => array(
                '_id' => '$hashtags', '
                count' => array(
                    '$sum => 1',
                ),
            ),
        ),
        array(
            '$sort' => array(
                'count' => '-1', 
                '_id' => '1',
            ),
        ),
    ));
});

dd($cursor);

What I can derive from the Laravel-MongoDB docs is that the raw query input works the same as in PHP mongodb.

The error returned is this:

MongoResultException (15951)

localhost:27017: exception: the group aggregate field 'count' must be defined as an expression inside an object

Rewrote the array and now it works:

$cursor = DB::collection('twitter')->raw(function($collection)
{
    return $collection->aggregate([
        [ 
            '$group' => [ 
                '_id' => '$status.entities.hashtags.text', 
                'hashtags' => [
                    '$addToSet' => '$status.entities.hashtags.text'
                ]
            ]
        ],
        [ '$unwind' => '$hashtags' ], 
        [ '$unwind' => '$hashtags' ],
        [ '$group' => [ '_id' => [ '$toLower' => '$hashtags' ], 'count' => [ '$sum' => 1 ] ] ],
        [ '$sort' => [ 'count' => -1, '_id' => 1 ] ]
    ]);
});

Just replaced the {} by [] and the : by => and that did the trick!

You solved this but I can tell you where you was wrong:

'$sum => 1',

Should be:

array('$sum' => 1)