Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Create Spring Data Aggregation from MongoDb aggregation query

Can any one help me convert this mongoDB aggregation to spring data mongo?

I am trying to get list of un-reminded attendee's email in each invitation document.

Got it working in mongo shell, but need to do it in Spring data mongo.

My shell query

db.invitation.aggregate(
[ 
    { $match : {_id : {$in : [id1,id2,...]}}},
    { $unwind : "$attendees" },
    { $match : { "attendees.reminded" : false}},
    { $project : {_id : 1,"attendees.contact.email" : 1}},
    { $group : {
            _id : "$_id",
            emails : { $push : "$attendees.contact.email"}
        }
    }
]

)

This is what I came up with, as you can see, it's working not as expected at a project and group operation of the pipeline. Generated query is given below.

Aggregation Object creation

Aggregation aggregation = newAggregation(
        match(Criteria.where("_id").in(ids)),
        unwind("$attendees"),
        match(Criteria.where("attendees.reminded").is(false)),
        project("_id","attendees.contact.email"),
        group().push("_id").as("_id").push("attendees.contact.email").as("emails")
    );

It creates the following query

Query generated by Aggregation object

{ "aggregate" : "__collection__" , "pipeline" : [
{ "$match" : { "_id" : { "$in" : [id1,id2,...]}}},
{ "$unwind" : "$attendees"},
{ "$match" : { "attendees.reminded" : false}},
{ "$project" : { "_id" : 1 , "contact.email" : "$attendees.contact.email"}},
{ "$group" : { "_id" : { "$push" : "$_id"}, "emails" : { "$push" : "$attendees.contact.email"}}}]}

I don't know the correct way to use Aggregation Group in spring data mongo.

Could someone help me please or provide link to group aggregation with $push etc?

like image 694
Shabin Muhammed Avatar asked Dec 10 '22 21:12

Shabin Muhammed


1 Answers

Correct Syntax would be:

Aggregation aggregation = newAggregation(
        match(Criteria.where("_id").in(ids)),
        unwind("$attendees"),
        match(Criteria.where("attendees.reminded").is(false)),
        project("_id","attendees.contact.email"),
        group("_id").push("attendees.contact.email").as("emails")
    );

Reference: http://docs.spring.io/spring-data/mongodb/docs/current/reference/html/#mongo.group

like image 175
Prakash Bhagat Avatar answered Dec 28 '22 06:12

Prakash Bhagat