This repository was archived by the owner on Jun 22, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 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.
2424The [ facade in this package is a TypeScript interface] ( ../src/Facade.ts ) , but concrete implementations of the interface are listed below.
2525
2626- [ 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 )
2828- [ 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.
2323{
2424 "$or" : [
2525 {
26- "$not " : {
27- "numberProp1 " : {
26+ "numberProp1 " : {
27+ "$not " : {
2828 "$gt" : 0 ,
29- "$lt" : 1 ,
29+ "$lt" : 1
3030 }
3131 }
3232 },
@@ -36,7 +36,7 @@ The filter below is comprehensive example using all of the operators.
3636 "stringProp1" : " string value 1" ,
3737 "numberProp2" : {
3838 "$gte" : 0 ,
39- "$lte" : 1 ,
39+ "$lte" : 1
4040 },
4141 "numberProp3" : { "$ne" : 0 },
4242 "numberProp4" : { "$eq" : 0 }
@@ -61,4 +61,4 @@ The filter below is comprehensive example using all of the operators.
6161 }
6262 ]
6363}
64- ```
64+ ```
You can’t perform that action at this time.
0 commit comments