node.jsドライバー findOne コード>
findOne
とは異なる呼び出し署名があります MongoDBシェルで。フィールド選択オブジェクトをprojection
として渡します options
の要素 パラメータ:
dbo.collection("users")
.findOne({"friends.email": email},
{projection: { friends: { $elemMatch: { email: email } } } },
function(errT, resultT) {...});