Musíte začít s $objectToArray
dynamicky číst vaše klíče. Pak můžete $map
vlastnosti spolu s $anyElementTrue
zjistit, zda je v thing
nějaké vnořené pole obsahující {"attribute1":"typeC"}
:
db.collection.aggregate([
{
$match: {
$expr: {
$anyElementTrue: {
$map: {
input: { $objectToArray: "$thing" },
in: { $eq: [ "$$this.v.attribute1", "typeC" ] }
}
}
}
}
}
])