użyj $regex
w mongodb
jak używać wyrażenia regularnego
przykład
select * from table where abc like %v%
w mongo
var colName="v";
models.customer.find({ "abc": { $regex: '.*' + colName + '.*' } },
function(err,data){
console.log('data',data);
});
Twoje zapytanie wygląda tak
var name="john";
UserSchema.find({name: { $regex: '.*' + name + '.*' } }).limit(5);