select
でも同じドット表記スタイルを使用できます find
で行うように、Mongooseでオブジェクトを作成します 例:
var fields = { 'properties.OBJECTID': 1, 'properties.TIMESTAMP': 1 };
var query = Feature.find({id: 1}).select(fields);
マングーススタイルの選択文字列を使用することもできます:
var query = Feature.find({id: 1})
.select('properties.OBJECTID properties.TIMESTAMP');