- Błąd mówi
$map
input
akceptuje pole referencyjne za pomocą$
podpisz$version
, - załącz
u
obiekt w nawiasie tablicy dla aktualizacji z potok agregacji - po prostu wstaw oba pola
title
iversion
w$map
$unset
nie jest wymagane, ponieważ$map
zastąpi stare dane nowymi polami win
db.runCommand({
update: 'apps',
updates: [
{
q: { "versions.name": { $exists: true } },
u: [{
$set: {
versions: {
$map: {
input: "$versions",
in: {
"title": "$$this.name",
"version": "$$this.version"
}
}
}
}
}],
multi: true
}
]
})
Drugi sposób, dla bardziej dynamicznego podejścia
$mergeObjects
wewnątrz$map
, aby zapobiec ręcznej liście par klucz-wartość$unset
etap do usunięcianame
pole zversion
tablica
db.runCommand({
update: 'apps',
updates: [
{
q: { "versions.name": { $exists: true } },
u: [
{
$set: {
versions: {
$map: {
input: "$versions",
in: {
$mergeObjects: [
"$$this",
{ "title": "$$this.name" }
]
}
}
}
}
},
{ $unset: "versions.name" }
],
multi: true
}
]
})