I have some documents :
{
"storeID" : "715R",
"sensorID" : [
"0BBA",
"0BB9"
]
}
{
"storeID" : "312R",
"sensorID" : [
"0BBB"
]
}
I want to get result of sensorID which sotreID match any value in storeIDarray like ['715R','312R','789R']
in this case I want get result : a sensorID array : [ "0BBA", "0BB9","0BBB"]
what should I do? thanks.
$inand then either use a projection orArray.prototype.mapdistinctif it suit your needs.db.collection_name.distinct("sensorID", {storeID: {$in: ['715R','312R','789R'] }})