t1 loopback code example
Example 1: loopback ilike
Post.find({where: {title: {ilike: 'm.-st'}}},
function (err, posts) { ... });
Example 2: loopback upsert
PersistedModel.upsert(data, callback)
Post.find({where: {title: {ilike: 'm.-st'}}},
function (err, posts) { ... });
PersistedModel.upsert(data, callback)