MongoDB Query: Find documents which match a given value
I have Mongo DB collection which contains items like below: { "_id" : ObjectId("123123123123123123"), "title" : "Item-001", "tags" : [ "red" ], } { "_id" : ObjectId("234234234234234"), "title" : "Item-002", "tags" : [ "red,yellow" ], } Objective: I want to…