GitHub user padewitte opened a pull request:

    https://github.com/apache/camel/pull/26

    Add aggregat to mongo component

    Hi,
    
    I just add the ability to use aggregat in camel-mongo-db route.
    
    Now you can declare a route to aggregate : 
from(...).to("mongodb:myDb?database=test&collection=test&operation=aggregat&dynamicity=true");
    
    The body should contain a valid Mongo pipeline for example { $match : 
{"name" : "my product"}},{ $group: { _id: "$name" ,total: { $sum: "$price" } } }
    
    P-Alban

You can merge this pull request into a Git repository by running:

    $ git pull https://github.com/padewitte/camel addaggregat

Alternatively you can review and apply these changes as the patch at:

    https://github.com/apache/camel/pull/26.patch

----

----

Reply via email to