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

Commit 9ba99aa

Browse files
authored
docs: Corrects filter docs.
1 parent 0070a76 commit 9ba99aa

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/filter.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ The filter below is comprehensive example using all of the operators.
2222
{
2323
"$or": [
2424
{
25-
"$not": {
26-
"numberProp1": {
25+
"numberProp1": {
26+
"$not": {
2727
"$gt": 0,
28-
"$lt": 1,
28+
"$lt": 1
2929
}
3030
}
3131
},
@@ -35,7 +35,7 @@ The filter below is comprehensive example using all of the operators.
3535
"stringProp1": "string value 1",
3636
"numberProp2": {
3737
"$gte": 0,
38-
"$lte": 1,
38+
"$lte": 1
3939
},
4040
"numberProp3": { "$ne": 0 },
4141
"numberProp4": { "$eq": 0 }
@@ -52,4 +52,4 @@ The filter below is comprehensive example using all of the operators.
5252
}
5353
]
5454
}
55-
```
55+
```

0 commit comments

Comments
 (0)