We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7d342c commit 5f82554Copy full SHA for 5f82554
1 file changed
README.md
@@ -77,7 +77,7 @@ Starting from version version 0.8.3 list$ supports also these operators:
77
- gte$: `.list$({ f1: {gte$: 5} })` for greater than or equal.
78
- gt$: `.list$({ f1: {gt$: 5} })` for greater than.
79
- in$: `.list$({ f1: {in$: [10, 20]} })` for in. in$ operator accepts only values of type array.
80
-- nin$: `.list$({ f1: {nin$: ["'v1'", "'v2'"]} })` for not-in. nin$ operator accepts only values of type array.
+- nin$: `.list$({ f1: {nin$: ['v1', 'v2']} })` for not-in. nin$ operator accepts only values of type array.
81
82
83
Note: you can use `sort$`, `limit$`, `skip$` and `fields$` together.
0 commit comments