|
@@ -139,6 +139,12 @@ GET http://localhost/api.php/categories?filter=id,le,1
|
139
|
139
|
GET http://localhost/api.php/categories?filter=id,lt,2
|
140
|
140
|
```
|
141
|
141
|
|
|
142
|
+Output:
|
|
143
|
+
|
|
144
|
+```
|
|
145
|
+{"categories":{"columns":["id","name"],"records":[["1","Internet"]]}}
|
|
146
|
+```
|
|
147
|
+
|
142
|
148
|
### List + Filter + Satisfy
|
143
|
149
|
|
144
|
150
|
Multiple filters can be applied by using "filter[]" instead of "filter" as a parameter name. Then the parameter "satisfy" is used to indicate whether "all" (default) or "any" filter should be satisfied to lead to a match:
|