Spring 启动 MongoDB 与 ReplaceRoot 的聚合/如何获取组中的最新项

Spring Boot MongoDB Aggregation with ReplaceRoot / How to get the Most Recent Item in a Group

我想在 Spring 引导应用程序中获得此 MongoDB 查询的结果。

db.getCollection('contentSource').aggregate( [ { $sort: { "modified": -1 } }, 
{ $group: { _id: "$sourceId", cs: { $push: "$$ROOT" } }}, 
{ $replaceRoot: { newRoot: { $arrayElemAt: ['$cs', 0] } }} ] )

有谁知道如何将 replaceRoot 添加到我的聚合中?

    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();