Closed
Description
if (options.allowSimpleWhere) {
this.utils.forOwn(params, function (value, key) {
if (!(key in reserved) && !(key in where)) {
where[key] = {
'==': value
};
}
});
}
With this code in the default filter no other operator then == is supported, so you can't use stuff like >
, in
etc. It should probably just reuse the operator that is defined in the simple where.