admin管理员组文章数量:1341745
I am querying mongodb through node.js code. My mongo documents collection (Patients Collection) has the following structure:+
Patient collection
{
"_id" : ObjectId("59e5c28f37ce021e142e7ead"),
"MRN" : "00126389",
"Family_Name" : "Jones",
"First_Name" : "Lydia",
"Father_Name" : "Bob",
"Maiden_Name" : "",
"Mother_Name" : "n/a",
"Spouse_Name" : "",
"Address" : "",
"Telephone_Nbr" : "",
"Patient_Visit" : {
"Department" : "ER",
"Hospital_Status" : "Active",
"Case_Nbr" : "17",
"Admission_Date" : "01/04/2011 12:00:00 AM",
"Admission_Time" : "14:02"
}
}
My query execution code is presented below:
mongoClient.connect(mongoConstr, function(err, db) {
if (err) throw err;
var query = {
$and: [{
"Patient_Visit.Department": "ER"
}, {
$or: [{
"Patient_Visit.Hospital_Status": "Active Left"
}, {
"Patient_Visit.Hospital_Status": "Active"
}]
}]
};
var cursor = db.collection("tbl_Patients").find({
query
});
cursor.forEach(function(doc) {
console.log(JSON.stringify(doc));
}, function(err) {
db.close();
throw (err);
});
});
When the request is executed I get the following error:
MongoError: unknown operator: $and
Any help would be appreciated.
I am querying mongodb through node.js code. My mongo documents collection (Patients Collection) has the following structure:+
Patient collection
{
"_id" : ObjectId("59e5c28f37ce021e142e7ead"),
"MRN" : "00126389",
"Family_Name" : "Jones",
"First_Name" : "Lydia",
"Father_Name" : "Bob",
"Maiden_Name" : "",
"Mother_Name" : "n/a",
"Spouse_Name" : "",
"Address" : "",
"Telephone_Nbr" : "",
"Patient_Visit" : {
"Department" : "ER",
"Hospital_Status" : "Active",
"Case_Nbr" : "17",
"Admission_Date" : "01/04/2011 12:00:00 AM",
"Admission_Time" : "14:02"
}
}
My query execution code is presented below:
mongoClient.connect(mongoConstr, function(err, db) {
if (err) throw err;
var query = {
$and: [{
"Patient_Visit.Department": "ER"
}, {
$or: [{
"Patient_Visit.Hospital_Status": "Active Left"
}, {
"Patient_Visit.Hospital_Status": "Active"
}]
}]
};
var cursor = db.collection("tbl_Patients").find({
query
});
cursor.forEach(function(doc) {
console.log(JSON.stringify(doc));
}, function(err) {
db.close();
throw (err);
});
});
When the request is executed I get the following error:
MongoError: unknown operator: $and
Any help would be appreciated.
Share Improve this question edited Oct 20, 2017 at 8:38 Derek 朕會功夫 94.5k45 gold badges198 silver badges253 bronze badges asked Oct 20, 2017 at 8:37 Elie AsmarElie Asmar 3,1656 gold badges20 silver badges32 bronze badges 5- which version of Mongo you are using.? – Rijad Rahim Commented Oct 20, 2017 at 8:41
- 3.4.5-rc0-4-g4db4a7c as per db.version() return value – Elie Asmar Commented Oct 20, 2017 at 8:45
-
2
Someone has already attempted to answer you, Despite getting the callback part wrong the issue is you should be doing
.find(query)
and not.find({ query })
. That's an ES6 syntax being expanded tofind({ "query": query })
and you don't want that. Hence the error. – Neil Lunn Commented Oct 20, 2017 at 8:48 -
@ElieAsmar - Remove the additional
{}
in your query. Modified query partvar cursor = db.collection("tbl_Patients").find(query);
– Clement Amarnath Commented Oct 20, 2017 at 8:48 -
1
Not the issue but even
query
can be rewritten as{ "Patient_Visit.Department": "ER", "Patient_Visit.Hospital_Status": { "$in": ["Active Left", "Active"] } }
.$and
is "implicit" in ALL MongoDB query arguments and rarely ever needed explicitly. Also$in
is a much shorter version of$or
when you are applying the condition to the same property. – Neil Lunn Commented Oct 20, 2017 at 8:59
1 Answer
Reset to default 10Replace the {query} with query.
var cursor = db.collection("tbl_Patients").find(query);
本文标签: javascriptUnknown operator and in MongoDBStack Overflow
版权声明:本文标题:javascript - Unknown operator: $and in MongoDB - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743622560a2511772.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论