This commit is contained in:
Sajjad Shirazy 2019-02-03 15:08:57 +03:30
commit 9453eb3829

View File

@ -1116,6 +1116,13 @@ module.exports = function(strapi) {
symbol: 'NOT IN',
value: _.isArray(value) ? value : [value],
};
break;
case '_nin':
result.key = `where.${key}`;
result.value = {
symbol: 'NOT IN',
value,
};
break;
default:
return undefined;