我想在Spring Boot应用程序中获取此MongoDB查询的结果。
db.getCollection('contentSource').aggregate( [ { $sort: { "modified": -1 } },
{ $group: { _id: "$sourceId", cs: { $push: "$$ROOT" } }},
{ $replaceRoot: { newRoot: { $arrayElemAt: ['$cs', 0] } }} ] )
有人知道如何将replaceRoot添加到我的聚合中吗?
答案 0 :(得分:1)
SortOperation sortOperation = new SortOperation(new Sort(Sort.Direction.ASC,"modified"));
GroupOperation groupOperation = group("sourceId").push("$$ROOT").as("cs");
Aggregation aggregation = newAggregation( sortOperation , groupOperation);
AggregationOperation replaceRoot = Aggregation.replaceRoot().withValueOf(ArrayOperators.ArrayElemAt.arrayOf("cs").elementAt(0));
AggregationResults<Document> result = mongoTemplate.aggregate(aggregation,"contentSource", replaceRoot, Document.class);
return result.getMappedResults();