solution/mongo-odm-aggregation-bundle

This Bundle integrates mongo aggregation queries into you Symfony2 project.

Maintainers

Package info

github.com/f1nder/SolutionMongoAggregationBundle

Type:symfony-bundle

pkg:composer/solution/mongo-odm-aggregation-bundle

Statistics

Installs: 50 474

Dependents: 3

Suggesters: 1

Stars: 12

Open Issues: 2

v0.1.1 2016-04-22 07:39 UTC

This package is not auto-updated.

Last update: 2026-02-25 19:18:29 UTC


README

Integration Mongo Pipeline Builder into you Doctrine2 Mongo-ODM

Library not yet ready.

###Install

Add to composer and install/update vendors

  "solution/mongo-odm-aggregation-bundle": "dev-master"

Add to your AppKernel and install/update vendors

  new Solution\MongoAggregationBundle\SolutionMongoAggregationBundle()

###Usage After install, bundle create mongo aggregation query manager for every DocumentManager

Example: If you have default document manager

doctrine_mongodb.odm.default_document_manager

bundle created

doctrine_mongodb.odm.default_aggregation_query

etc

####Example create aggregation query

$expr = new \Solution\MongoAggregation\Pipeline\Operators\Expr;
$aq = $this->get('doctrine_mongodb.odm.default_aggregation_query')
        ->getCollection('AdmPlayerBundle:Comments')->createAggregateQuery()
        ->group(['_id' => ['month' => $expr->month('$dateRegistration')], 'count' => $expr->sum(1)])
        ->sort(['count' => -1])
        ->limit(50);