$maxN(配列演算子)
定義
構文
$maxN
の構文は次のとおりです。
{ $maxN: { n: <expression>, input: <expression> } }
動作
1
n
の値は指定できません。$maxN
は、input
配列にあるnull
値をフィルタリングします。指定された
n
がinput
配列内の要素数以上の場合、$maxN
はinput
配列内のすべての要素を返します。input
が配列以外の値に解決される場合、集計操作はエラーになります。input
に数値要素と string 要素の両方が含まれている場合、string 要素はBSON 比較順序に従って数値要素の前にソートされます。
例
次のドキュメントを使用して scores
コレクションを作成します。
db.scores.insertMany([ { "playerId" : 1, "score" : [ 1, 2, 3 ] }, { "playerId" : 2, "score" : [ 12, 90, 7, 89, 8 ] }, { "playerId" : 3, "score" : [ null ] }, { "playerId" : 4, "score" : [ ] } { "playerId" : 5, "score" : [ 1293, "2", 3489, 9 ]} ])
次の例では、 $maxN
演算子を使用して、各プレイヤーの最高のスコアを 2 つ検索します。 最高スコアは、 $addFields
によって作成された新しいフィールドmaxScores
に返されます。
db.scores.aggregate([ { $addFields: { maxScores: { $maxN: { n: 2, input: "$score" } } } } ])
この操作は次の結果を返します。
[{ "playerId": 1, "score": [ 1, 2, 3 ], "maxScores": [ 3, 2 ] }, { "playerId": 2, "score": [ 12, 90, 7, 89, 8 ], "maxScores": [ 90, 89 ] }, { "playerId": 3, "score": [ null ], "maxScores": [ ] }, { "playerId": 4, "score": [ ], "maxScores": [ ] }, { "playerId": 5, "score": [ 1293, "2", 3489, 9 ], "maxScores": [ "2", 3489 ] }]