MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Prüfen Sie vor $unwind, ob das Unterdokument nicht leer ist

Sie müssen preserveNullAndEmptyArrays hinzufügen -Eigenschaft in Ihrem $unwind Vorgang wie folgt:

{
 $unwind:
  {
    path: "$applications",
    preserveNullAndEmptyArrays: true
  }
}

$unwind