why regex is not working with filters in loopback code example
Example 1: loopback ilike
Post.find({where: {title: {ilike: 'm.-st'}}},
function (err, posts) { ... });
Example 2: loopback model count
PersistedModel.count([where], callback)
Post.find({where: {title: {ilike: 'm.-st'}}},
function (err, posts) { ... });
PersistedModel.count([where], callback)