Skip to content

Commit 093cf88

Browse files
committed
Add Not Like custom operator
1 parent 703b937 commit 093cf88

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Readme.md

+1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ It's a query language that introduces basic and logical operators. This is perfe
3333

3434
#### Additionals operators
3535
- Like (Regex) : =regex= (to match regex values)
36+
- Not Like (Regex) : =notregex= (to not match regex values)
3637
- Exists : =exists= (to check if property exists)
3738

3839
###### NOTE

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rsql-mongodb",
3-
"version": "2.2.2",
3+
"version": "2.3.0",
44
"description": "Converting RSQL queries to MongoDB queries",
55
"main": "rsql-mongodb.js",
66
"typings": "rsql-mongodb.ts",
@@ -18,6 +18,7 @@
1818
},
1919
"author": "Fizcko",
2020
"contributors": [
21+
"woigl (https://github.com/woigl)",
2122
"zishone (https://github.com/zishone)"
2223
],
2324
"license": "MIT",

0 commit comments

Comments
 (0)