Este é um
mongo
consulta shell com MongoDB v4.2.8. Considere este documento de entrada:
{
"_id" : 1,
"name" : "john",
"stuff" : {
"mycolor" : "red",
"fruit" : "apple",
"mybook" : "programming gems",
"movie" : "star wars"
}
}
O objetivo é projetar o
name
e stuff
campos, mas stuff
com apenas nomes de campo começando com "my"
. A consulta de agregação:
db.test.aggregate([
{
$project: {
_id: 0,
name: 1,
stuff: {
$filter: {
input: { $objectToArray: "$stuff" },
as: "stf",
cond: { $regexMatch: { input: "$$stf.k" , regex: "^my" } }
}
}
}
},
{
$addFields: { stuff: { $arrayToObject: "$stuff" } }
}
])
E, a saída projetada:
{
"name" : "john",
"stuff" : {
"mycolor" : "red",
"mybook" : "programming gems"
}
}