I was wondering if anyone is able to perform a query with “LIKE” statementoperator using cbmongodb module.
In mongoDB shell, I was able to get results using the following statement:
`
db.getCollection(‘job’).find({description:/coldfusion/i})
`
In cbmongodb, I didn’t get any results:
`
job.reset().where(“description”, “like”, “coldfusion”);
job.reset().where(“description”, “like”, “/coldfusion/i”);
`
Does cbmongodb support $regex as well?
Thank you!