Hi i\'m using mongoose to search for persons in my collection.
/*Person model*/ { name: { first: String, last: String
regex can help you with this.
Person.find({ "name": { "$regex": "Alex", "$options": "i" } }, function(err,docs) { });