Answers for "how to query like in mongodb"

7

mongodb find like

db.users.find({"name": /.*m.*/});

db.users.find({"name": /m/});

Items.find({"description": {$regex: ".*" + variable + ".*"}}).fetch();
Posted by: Guest on May-21-2020
2

like mongodb

db.collection.find( { "url": { "$regex": ".*a.*"} } );
Posted by: Guest on March-20-2021
0

mongo db like

db.users.find({name: /a/})  // Like '%a%'
Posted by: Guest on June-18-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language