mirror of
https://github.com/strapi/strapi.git
synced 2025-10-06 05:44:19 +00:00
Supporting NOT IN
as a filter
This commit is contained in:
parent
5ed07cb27a
commit
553a31c85a
@ -567,6 +567,10 @@ module.exports = function (strapi) {
|
||||
result.key = `where.${key}.$in`;
|
||||
result.value = value;
|
||||
break;
|
||||
case '_nin':
|
||||
result.key = `where.${key}.$nin`;
|
||||
result.value = value;
|
||||
break;
|
||||
default:
|
||||
result = undefined;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user