mirror of
https://github.com/strapi/strapi.git
synced 2025-09-23 15:29:27 +00:00
Supporting NOT IN
as a filter
This commit is contained in:
parent
4d4d32837c
commit
71c279aee6
@ -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