Vous devez agréger comme ci-dessous :
- Construire une
find
objet pour faire correspondre uniquement les enregistrements contenant ($exists) la langue. - Construire une
Projection
objet pour projeter les champs.
Code :
var currentLang = "en";
var project = {};
project["title"] = "$"+currentLang+".title";
project["content"] = "$"+currentLang+".content";
project["images"] = 1;
var find = {};
find[currentLang] = {"$exists":true};
db.collection.aggregate([
{$match:find},
{$project:project}
])