admin管理员组文章数量:1347233
I have a collection, and inside this collection I have an array of objects called Degrees
.
This array contains objects with keys {Uni:'',Level:'',Degree:''}
, I want to be able to add to a parameter object the ability to find any document with a degree where level = 'BS'
, for example, regardless of what the other fields in the object contain.
I have tried so far:
{
$elemMatch: {
$eq: {
Uni: {
$exists: true,
},
Level: "BS",
Degree: {
$exists: true
}
}
}
}
But it has not worked, any suggestions?
I have a collection, and inside this collection I have an array of objects called Degrees
.
This array contains objects with keys {Uni:'',Level:'',Degree:''}
, I want to be able to add to a parameter object the ability to find any document with a degree where level = 'BS'
, for example, regardless of what the other fields in the object contain.
I have tried so far:
{
$elemMatch: {
$eq: {
Uni: {
$exists: true,
},
Level: "BS",
Degree: {
$exists: true
}
}
}
}
But it has not worked, any suggestions?
Share Improve this question edited Nov 20, 2020 at 14:55 J.F. 15.2k10 gold badges38 silver badges72 bronze badges asked Dec 1, 2017 at 22:03 user7437896user7437896 681 gold badge5 silver badges11 bronze badges3 Answers
Reset to default 4You can query the fields of the documents in the embedded array directly.
If your documents look something like
{
_id:ObjectId("..."),
Name: "",
degrees: [
{Uni:"",
Level:"BS",
Degree:""}
]
}
You could return all documents that contain at least one 'BS' level degree with
db.collection.find({"degrees.Level":"BS"})
The $elemMatch operator matches documents that contain an array field with at least one element that matches all the specified query criteria.
{ <field>: { $elemMatch: { <query1>, <query2>, ... } } }
I guess this should work for you :
db.collection.find({Degrees: {$elemMatch: {level:'BS'}}})
Don't forget to replace collection with ur model name. :)
Do checkout $elemMatch documetation here : mongoDb $elemMatch
If I'm understanding you correctly, and assuming your collection is called degrees
, it should be as simple as:
// From the mongo shell:
db.degrees.find({ Level: 'BS' });
// From javascript (assuming node's native driver):
db.collection('degrees').find({ Level: 'BS' });
If you're interested in only the first result then you can use the following:
// From the mongo shell:
db.degrees.findOne({ Level: 'BS' });
// From javascript:
db.collection('degrees').findOne({ Level: 'BS' });
本文标签: javascriptMongoDB query array of objects in collectionStack Overflow
版权声明:本文标题:javascript - MongoDB query array of objects in collection - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743831117a2546532.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论