MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Query MongoDb per ottenere il massimo di campo all'interno dell'array

Puoi farlo usando il semplice $project fase

Qualcosa come this

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