Created
August 3, 2018 12:10
-
-
Save claudiuconstantin/8b5b7be519d8f84a51d632668fc64108 to your computer and use it in GitHub Desktop.
Mongo 3.4+ $out collection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
db.collection.aggregate( | |
[ | |
{ "$addFields": { | |
"name": { "$concat": [ "$firstName", " ", "$lastName" ] } | |
}}, | |
{ "$out": "collection" } | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment