We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e0ee9b commit ae5b38fCopy full SHA for ae5b38f
README.md
@@ -7,13 +7,11 @@ Converts JSON config to SQL Query
7
{
8
"glue": "and",
9
"rules": [{
10
- "field":"age",
11
- "condition":{
12
- "type": "less",
13
- "filter": 42
14
- }
+ "field": "age",
+ "filter": "less",
+ "value": 42
15
},{
16
- "field":"region",
+ "field": "region",
17
"includes": [1,2,6]
18
}]
19
}
@@ -63,10 +61,8 @@ For those operations, both start and end values can be provided
63
61
```json
64
62
65
"field":"age",
66
67
- "type": "between",
68
- "filter": { "start": 10, "end": 99 }
69
+ "filter": "between",
+ "value": { "start": 10, "end": 99 }
70
71
```
72
0 commit comments