解決策についてはよくわかりません。現在mongodbが設定されていないため、これをテストすることはできませんが、<collection>.aggregate
を使用できると思います。 $project
と一緒に および$sort
これを達成するために。
サンプルコード:
db.inventory.aggregate(
[
{
$project: {
item: 1,
description: { $ifNull: [ "$amount", -1*(<mimimum value>)* ] }
}
},
{
$sort : {
amount : (-1 or 1 depending on the order you want)
}
}
]
)
これがお役に立てば幸いです!!