Answers for "how to find 2 fields in mongodb query"

Go
0

mongodb match multiple fields

$match:
{
	$and: [
    {'ExtraFields.value': {$in: ["A52A2A"]}}, 
    {'ExtraFields.fieldID': ObjectId("5535627631efa0843554b0ea")}
    ]
}
Posted by: Guest on July-01-2020
-1

mongodb find documents where two fields are equal

db.myCollection.find( { $where: "this.a1.a != this.a2.a" } )
Posted by: Guest on April-23-2020

Code answers related to "how to find 2 fields in mongodb query"

Browse Popular Code Answers by Language