MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

Requête MongoDb pour obtenir le maximum de champ dans le tableau

Vous pouvez le faire en utilisant simplement $project étape

Quelque chose comme this

db.collection.aggregate([
  { "$project": {
    "maxSectionId": {
      "$arrayElemAt": [
        "$sections",
        {
          "$indexOfArray": [
            "$sections.Id",
            { "$max": "$sections.Id" }
          ]
        }
      ]
    }
  }}
])