Du kan använda $out
aggregering
db.collection.aggregate([
{ "$addFields": {
"property_new": "$property"
}},
{ "$out": "newCollection" }
])
Det kommer att skapa en ny samling med namnet newCollection
döp bara om det till det befintliga.