U moet uw filters
wijzigen zoals hieronder weergegeven.
Uitleg
- We nemen filters op in de documentstructuur met de
$addFields
exploitant. Dit zal ons helpen om alle benodigde waarden te berekenen. - We filteren
toys
met de recentelijk meegeleverdefilters
attribuut met de$expr
operator. - Het
$filter
toepassen operator, we krijgen al het speelgoed met dezelfdecode
vanfilters
. Nu kunnen wetotal
berekenen enprice_total
waarden. - We kunnen
total_coincidences
berekenen binnen de$group
podium als volgt:
Maar je hebt het over "onderscheiden element". We maken dus een set unieke speelgoedcodes en tellen items in de set.
db.collection.aggregate([
{
$unwind: "$toys"
},
{
$addFields: {
"filters": [
{
"code": 17001,
"quantify": 2
},
{
"code": 17003,
"quantify": 4
},
{
"code": 17005,
"quantify": 5
},
{
"code": 17005,
"quantify": 6
}
]
}
},
{
$match: {
$expr: {
$in: [ "$toys.code", "$filters.code"]
}
}
},
{
$group: {
_id: "$toystore_name",
total_coincidences: {
$addToSet: "$toys.code"
},
toy_array: {
$push: {
"price_original": "$toys.price",
"toy": "$toys.toy",
"total": {
$size: {
$filter: {
input: "$filters",
cond: {
$eq: [ "$$this.code", "$toys.code"]
}
}
}
},
price_total: {
$sum: {
$map: {
input: {
$filter: {
input: "$filters",
cond: {
$eq: [ "$$this.code", "$toys.code" ]
}
}
},
in: {
$multiply: [ "$toys.price", "$$this.quantify" ]
}
}
}
}
}
}
}
},
{
$addFields: {
total_coincidences: {
$size: "$total_coincidences"
}
}
},
{
$sort: { _id: 1 }
}
])