We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 703b937 commit 093cf88Copy full SHA for 093cf88
Readme.md
@@ -33,6 +33,7 @@ It's a query language that introduces basic and logical operators. This is perfe
33
34
#### Additionals operators
35
- Like (Regex) : =regex= (to match regex values)
36
+- Not Like (Regex) : =notregex= (to not match regex values)
37
- Exists : =exists= (to check if property exists)
38
39
###### NOTE
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "rsql-mongodb",
3
- "version": "2.2.2",
+ "version": "2.3.0",
4
"description": "Converting RSQL queries to MongoDB queries",
5
"main": "rsql-mongodb.js",
6
"typings": "rsql-mongodb.ts",
@@ -18,6 +18,7 @@
18
},
19
"author": "Fizcko",
20
"contributors": [
21
+ "woigl (https://github.com/woigl)",
22
"zishone (https://github.com/zishone)"
23
],
24
"license": "MIT",
0 commit comments