Musíte agregovat následovně:
- Sestavte
find
objekt, aby odpovídal pouze záznamům obsahujícím ($exists) jazyk. - Vytvořte
Projection
objekt pro promítnutí polí.
Kód:
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}
])