We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9700e4 commit 1db2a30Copy full SHA for 1db2a30
src/functions.ts
@@ -321,8 +321,8 @@ export const functions: FunctionBuildersMap = {
321
return !!_values.find((item) => isEqual(item, _value))
322
}
323
},
324
- 'not in': (path: string, values: JSONQuery) => {
325
- const _in = functions.in(path, values)
+ 'not in': (value: JSONQuery, values: JSONQuery) => {
+ const _in = functions.in(value, values)
326
327
return (data: unknown) => !_in(data)
328
0 commit comments