This repository was archived by the owner on Jun 22, 2021. It is now read-only.
File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -24,5 +24,5 @@ The functions have some common options that they use.
24
24
The [ facade in this package is a TypeScript interface] ( ../src/Facade.ts ) , but concrete implementations of the interface are listed below.
25
25
26
26
- [ Memory] ( https://github.com/js-entity-repos/memory )
27
- - [ Mongo] ( https://github.com/js-entity-repos/mongo ) - Coming Soon
27
+ - [ Mongo] ( https://github.com/js-entity-repos/mongo )
28
28
- [ Knex] ( https://github.com/js-entity-repos/knex ) - Coming Soon
Original file line number Diff line number Diff line change @@ -23,10 +23,10 @@ The filter below is comprehensive example using all of the operators.
23
23
{
24
24
"$or" : [
25
25
{
26
- "$not " : {
27
- "numberProp1 " : {
26
+ "numberProp1 " : {
27
+ "$not " : {
28
28
"$gt" : 0 ,
29
- "$lt" : 1 ,
29
+ "$lt" : 1
30
30
}
31
31
}
32
32
},
@@ -36,7 +36,7 @@ The filter below is comprehensive example using all of the operators.
36
36
"stringProp1" : " string value 1" ,
37
37
"numberProp2" : {
38
38
"$gte" : 0 ,
39
- "$lte" : 1 ,
39
+ "$lte" : 1
40
40
},
41
41
"numberProp3" : { "$ne" : 0 },
42
42
"numberProp4" : { "$eq" : 0 }
@@ -61,4 +61,4 @@ The filter below is comprehensive example using all of the operators.
61
61
}
62
62
]
63
63
}
64
- ```
64
+ ```
You can’t perform that action at this time.
0 commit comments