{
_id: ObjectId("52ca2d45b80de42808000001"),
id: "1111139048239",
name: "Bruce Lim",
first_name: "Bruce",
last_name: "Lim",
friends: [
    {
        id: "1913681",
        name: "John Sim",
        icon: "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-ash2/1117702_1913681_1171369396_q.jpg",
        photos: [
            {
                src: "https://scontent-a.xx.fbcdn.net/hphotos-ash2/t1/230718_10150181312510976_7606555_n.jpg",
                lat: "38.2289",
                lng: "-85.7495"
            },
            {
                src: "https://scontent-b.xx.fbcdn.net/hphotos-frc3/230480_10150181312620976_3864544_n.jpg",
                lat: "38.2289",
                lng: "-85.7495"
            }
        ]
    },
    {
        id: "31925743892",
        name: "Mike Holloway",
        icon: "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/211634_31925743892_1471358831_q.jpg",
        photos: [
            {
                src: "https://scontent-a.xx.fbcdn.net/hphotos-ash2/t1/230718_10150181312510976_7606555_n.jpg",
                lat: "38.2289",
                lng: "-85.7495"
            },
            {
                src: "https://scontent-b.xx.fbcdn.net/hphotos-frc3/230480_10150181312620976_3864544_n.jpg",
                lat: "38.2289",
                lng: "-85.7495"
            }
        ]
    },
    {
        id: "1954048",
        name: "Christiana Basset",
        icon: "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-prn2/211634_1954048_1471358831_q.jpg",
        photos: [
            {
                src: "https://scontent-a.xx.fbcdn.net/hphotos-ash2/t1/230718_10150181312510976_7606555_n.jpg",
                lat: "38.2289",
                lng: "-85.7495"
            },
            {
                src: "https://scontent-b.xx.fbcdn.net/hphotos-frc3/230480_10150181312620976_3864544_n.jpg",
                lat: "38.2289",
                lng: "-85.7495"
            }
        ]
    }
]
}
when I query a collection of these docs this with
db.mapping.find(
    {"id":"1111139048239"},
    {"friends":{
        $elemMatch:{"id":"1913681"}
    }}
)
I get one matching friend subset back.
{
        "_id" : ObjectId("52ca2d45b80de42808000001"),
        "friends" : [
                {
                        "id" : "1913681",
                        "name" : "John Sim",
                        "icon" : "https://fbcdn-profile-a.akamaihd.net/hprofile-ak-ash2/1117702_1913681_1171369396_q.jpg",
                        "photos" : [
                                {
                                        "src" : "https://scontent-a.xx.fbcdn.net/hphotos-ash2/t1/230718_10150181312510976_7606555_n.jpg",
                                        "lat" : "38.2289",
                                        "lng" : "-85.7495"
                                },
                                {
                                        "src" : "https://scontent-b.xx.fbcdn.net/hphotos-frc3/230480_10150181312620976_3864544_n.jpg",
                                        "lat" : "38.2289",
                                        "lng" : "-85.7495"
                                }
                        ]
                }
        ]
}
How do I select multiple subsets.
db.mapping.find(
    {"id":"1111139048239"},
    {"friends":{
        $elemMatch:{"id":"1913681", "id":"1954048"}
    }}
)
db.mapping.find(
    {"id":"1111139048239"},
    {"friends":{
        $elemMatch:{"id":"1913681"},
        $elemMatch:{"id":"1954048"}
    }}
)
gets me only the last match, which is 1954048 in this case. How do I get both - 1913681, 1954048?
 
    