Below is my query which return result from database. I am using 3.2.22 mongo version
db.courses.find({_id:"edX-NYIF+CR.5x"});
Now I want fetch record of course Id which will be in lower case so I used below query it seems working fine if i use alpha character but not getting result for following course Id.
db.getCollection('courses').find({"_Id": { $regex : "edX-NYIF+CR.5x$" , $options: 'i'}})