Contains Query into MongoDB Array using Mongoose
Posted
by
Nilay Parikh
on Stack Overflow
See other posts from Stack Overflow
or by Nilay Parikh
Published on 2013-10-20T03:49:30Z
Indexed on
2013/10/20
3:53 UTC
Read the original article
Hit count: 287
I'm trying to query into following document and want to list all document which contains TaxonomyID "1" in "TaxonomyIDs" field.
...
"Slug" : "videosecu-600tvl-outdoor-security-surveillance",
"Category" : "Digital Cameras",
"SubCategory" : "Surveillance Cameras",
"Segment" : "",
"Usabilities" : [
"Dome Cameras",
"Night Vision"
],
"TaxonomyIDs" : [
1,
12,
20,
21,
13
],
"Brand" : "VideoSecu",
...
Totally stuck!
© Stack Overflow or respective owner