Case Insensitive Search with Regex

Ah that’s on Realm Function Editor! My bad. Even I’m new to that tool as well ha ha

All right, I just set up Realm and figure it out.
Try this simple way. It works for me on Ream as well.

const docs = mycollection.find({
    "dt_name": {
        "$regex": param1,
        "$options": "i"
    }
});
return data;

Have you tried this way? :slight_smile: