Skip to content

Instantly share code, notes, and snippets.

@paulvanbladel
Last active August 29, 2015 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulvanbladel/6b5f819d22ab3014c769 to your computer and use it in GitHub Desktop.
Save paulvanbladel/6b5f819d22ab3014c769 to your computer and use it in GitHub Desktop.
Alex Zanfir course: case insensitive search instead of case sensitive in mongoDb
Replace
User.findOne(searchUser, function (err, user) { ...
with:
User.findOne({"email": {$regex: new RegExp(searchUser, "i")}}, function (err, user) { ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment