|
@@ -205,11 +205,13 @@ NB: You may specify "satisfy=categories.all,posts.any" if you want to mix "and"
|
205
|
205
|
|
206
|
206
|
### List + Column selection
|
207
|
207
|
|
208
|
|
-By default all columns are selected. With the "columns" parameter you can select specific columns. Multiple columns should be comma separated. An asterisk ("*") may be used as a wildcard to indicate "all columns":
|
|
208
|
+By default all columns are selected. With the "columns" parameter you can select specific columns. Multiple columns should be comma separated.
|
|
209
|
+An asterisk ("*") may be used as a wildcard to indicate "all columns". Similar to "columns" you may use the "exclude" parameter to remove certain columns:
|
209
|
210
|
|
210
|
211
|
```
|
211
|
212
|
GET http://localhost/api.php/categories?columns=name
|
212
|
213
|
GET http://localhost/api.php/categories?columns=categories.name
|
|
214
|
+GET http://localhost/api.php/categories?exclude=categories.id
|
213
|
215
|
```
|
214
|
216
|
|
215
|
217
|
Output:
|