Skip to content
This repository was archived by the owner on Jun 22, 2021. It is now read-only.

Commit e069517

Browse files
committed
Merge branch 'master' of github.com:js-entity-repos/core
2 parents 08b1d14 + 9ba99aa commit e069517

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/facade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ The functions have some common options that they use.
2424
The [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

docs/filter.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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+
```

0 commit comments

Comments
 (0)