$ уменьшить подходит лучше для вашего случая использования:
Псевдокод
value = url.split("_2000x")[0]
for (item: url.split("_2000x")[1:])
value += "_850x" + item
db.collection.aggregate([
{
$match: {
imageUrl: {
$regex: "_2000x"
},
brand: "Goat The Label"
}
},
{
$addFields: {
imageUrl: {
$reduce: {
input: {
$slice: [
{
$split: [
"$imageUrl",
"_2000x"
]
},
1,
{
$size: {
$split: [
"$imageUrl",
"_2000x"
]
}
}
]
},
initialValue: {
$arrayElemAt: [
{
$split: [
"$imageUrl",
"_2000x"
]
},
0
]
},
in: {
$concat: [
"$$value",
"_850x",
"$$this"
]
}
}
}
}
}
])
MongoPlayground
РЕДАКТИРОВАТЬ: Для выполнения через Bash shell:
Windows:
создать темп. js файл с:
db.collection.aggregate(...).forEach(...)
создать файл temp.bat с:
@echo off
path/to/mongo.exe --uri put_here_mongodb+srv temp.js
Теперь запустите: temp.bat
Unix:
создать файл temp. js с:
db.collection.aggregate(...).forEach(...)
создать файл temp.bat с:
#!/bin/bash
path/to/mongo --uri put_here_mongodb+srv temp.js
Give разрешения на выполнение: chmod u+x temp.sh
Теперь запустите: ./temp.sh