Skip to content

Instantly share code, notes, and snippets.

@javierfdezg
Created March 25, 2015 17:14
Show Gist options
  • Save javierfdezg/7cac0360ade0982c7ccf to your computer and use it in GitHub Desktop.
Save javierfdezg/7cac0360ade0982c7ccf to your computer and use it in GitHub Desktop.
Build Mongodb regexp query dynamically
var query = {};
var search = {
field: 'name',
value: 'Your value'
};
query[search.field] = {
$regex: new Regexp(search.value),
$options: "i"
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment