我正在尝试在loopback.io中进行查询。但找不到与此相关的任何功能。这是我尝试过的:
Product.find({
where: {
name: {
like: '%' + searchTerm + '%'
},
id: {
neq: [1,2,3]
}
},
limit: 15
}, function(err, searchResults) {...}
事实上,生成的查询是:
'SELECT `id`,`name`,`ref` FROM `Product` WHERE `name` LIKE \'%iPh%\' AND `id`!=1, 2, 3 ORDER BY `id` LIMIT 15' }
我知道我们可以查看
field in (n1,n2,...)
使用https://docs.strongloop.com/display/public/LB/Where+filter#Wherefilter-inq。但我无法得到'不在'的情况。
之前有人遇到过这种情况吗?
答案 0 :(得分:6)
您使用的neq
确实用于您提供的 not equals 。
要使用 Not In运算符,我们必须使用nin
。再次检查documentation,其中有一个包含运算符及其说明
Product.find({
where: {
name: {
like: '%' + searchTerm + '%'
},
id: {
nin: [1,2,3]
}
},
limit: 15
}, function(err, searchResults) {...}