$elemMatch を使用します ネストされた配列を検索するため、および $ 予測では、次のようにクエリします:
Meteor.users.findOne({
"_id": userId1,
"profile.friends": {
"$elemMatch": {
"_id": userId2
}
}
}, {
"profile.friends.state.$": 1
})
$elemMatch を使用します ネストされた配列を検索するため、および $ 予測では、次のようにクエリします:
Meteor.users.findOne({
"_id": userId1,
"profile.friends": {
"$elemMatch": {
"_id": userId2
}
}
}, {
"profile.friends.state.$": 1
})