find $regex case insensitive mongodb code example
Example 1: mongodb regex case insensitive
db.collection.find({name:{'$regex' : '^((?!string).)*$', '$options' : 'i'}})
Example 2: "compass" mongodb filter or search regex
{
email: RegExp('@gmail.com$', 'i')
}