mongodb find like

Solutions on MaxInterview for mongodb find like by the best coders in the world

showing results for - "mongodb find like"
Gustave
25 Jan 2016
1db.users.find({"name": /.*m.*/});
2
3db.users.find({"name": /m/});
4
5Items.find({"description": {$regex: ".*" + variable + ".*"}}).fetch();
Bianca
31 Nov 2019
1db.users.find({"name": /.*m.*/})