We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ccd2e7 commit 9b0fc02Copy full SHA for 9b0fc02
Readme.md
@@ -77,13 +77,13 @@ try{
77
//=> { "childs": { $nin: [1,2,3] } }
78
79
// Like operator
80
- rsqlMongoDB('lastName=~do*');
+ rsqlMongoDB('lastName=regex=do*');
81
//=> { "lastName": { $regex: "do*", $options: "" } }
82
83
// Like operator with options
84
- rsqlMongoDB('lastName=~do*=si');
+ rsqlMongoDB('lastName=regex=do*=si');
85
//=> { "lastName": { $regex: "do*", $options: "si" } }
86
- rsqlMongoDB('lastName=~"do=*"=si');
+ rsqlMongoDB('lastName=regex="do=*"=si');
87
//=> { "lastName": { $regex: "do=*", $options: "si" } }
88
89
// Exists operator
0 commit comments