私はAggregation aggregation
をパラメタとして受け取る関数を持っています。Spring Mongo>集計から集計オペレーションを集める方法
AggregationOperation
をaggregation
から取得したいと考えています。それを行う方法はありますか?
public Aggregation newCustomAggregation(Aggregation aggregation, Criteria c) {
// How to get list operation aggregation there?
listOperation.push(Aggregation.match(c));
return Aggregation
.newAggregation(listOperations);
}
私の目的は私のカスタムMatchAggregation
を持つ別のAggregation
新しいです。
よう
何か? – chridam
こんにちはchridam、パラメータとして受け取ったときに結果をフィルタリングするための動的条件を追加するために使用したいと思います(query.addCriteria(... myCriteria)と同様) –