"features" : {
"en" : [
{
"translatable" : true,
"capacity " : [
"128GB",
"256GB"
]
},
{
"translatable" : true,
"material " : [
"Glass",
"Aluminium"
]
}
]
}
I am finding 'capacity': '128GB' when I am using this query
db.getCollection('products').find({
'features.en' : {
$elemMatch : {
'capacity' : {
$in : ['128GB']
}
}
}
})
But not fetching. If i query for 'translatable':true
db.getCollection('products').find({
'features.en' : {
$elemMatch : {
'translatable' : true
}
}
})