db.users.aggregate([
{ "$addFields": {
"profile.carIds": {
"$map": {
"input": "$profile.carIds",
"as": "card",
"in": {
"id": "$$card"
}
}
}
}},
{ "$out": "users_new" }
])
` 我需要版本4.0.4的解决方案