DATAMONGO-2053 - Add support for $mergeObjects aggregation operator.

Original pull request: #601.
This commit is contained in:
Christoph Strobl
2018-08-14 09:39:50 +02:00
committed by Mark Paluch
parent 799fa6c87e
commit 3dc6cab132
4 changed files with 328 additions and 0 deletions

View File

@@ -2100,6 +2100,7 @@ The MongoDB Aggregation Framework provides the following types of aggregation op
* Conditional Aggregation Operators
* Lookup Aggregation Operators
* Convert Aggregation Operators
* Object Aggregation Operators
At the time of this writing, we provide support for the following Aggregation Operations in Spring Data MongoDB:
@@ -2144,6 +2145,9 @@ At the time of this writing, we provide support for the following Aggregation Op
| Convert Aggregation Operators
| `convert`, `toBool`, `toDate`, `toDecimal`, `toDouble`, `toInt`, `toLong`, `toObjectId`, `toString`
| Object Aggregation Operators
| `mergeObjects`
|===
* The operation is mapped or added by Spring Data MongoDB.