suggested cleaup by @begriffs

This commit is contained in:
Ruslan Talpa
2016-05-31 14:55:31 +03:00
parent 7c83edc402
commit dc727f900d
8 changed files with 38 additions and 51 deletions
+1 -1
View File
@@ -174,7 +174,7 @@ GET /people?order=age.desc.nullslast
To order the embedded items, you need to specify the tree path for the order param like so.
```HTTP
GET /projects?select=id,name,tasks{id,name}&order=id.ask&tasks.order=name.ask
GET /projects?select=id,name,tasks{id,name}&order=id.asc&tasks.order=name.asc
```