MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Facet + Aggregate Query using ObjectId-Problem mit Spring Data Mongo

Sie ordnen das ID-Feld sowohl in der Projekt- als auch in der Gruppenphase falsch zu.

Es sollte _id sein nicht ich. Ändern Sie auch den E-Mail-Typ in String. Funktioniert bei mir.

GroupOperation groupOp = Aggregation
            .group("firstName", "lastName", "email", "status", "_id")
            .addToSet("department").as("department").addToSet("address").as("address");

ProjectionOperation projectStage = Aggregation.project("firstName", "lastName", "email", "status", "department", "address", "_id");

...

AggregationResults<EmployeeOutFacet> EmployeeOutList = mongoTemplate.aggregate(aggregation, mongoTemplate.getCollectionName(Employee.class), EmployeeOutFacet.class);