आप qTyIn
. की तुलना कर सकते हैं undefined
. के साथ $filter
के अंदर :
db.collection.aggregate([
{
$addFields: {
transactions: {
$filter: {
input: "$transactions",
cond: {
$ne: [ "$$this.qtyIn", null ]
}
}
}
}
}
])