michalCapo

Results 3 issues of michalCapo

To bring it to absolute perfection (https://github.com/njoyard/yarm/issues/2) from my point of view. Sorting via url is requested. ``` GET http://localhost/api/v1/Customers?sort=-name ```

It's possible to have population feature also via url. E.g. ``` http://somehost:someport/posts?populate=tasks ``` Idea stolen from https://github.com/florianholzapfel/express-restify-mongoose

This should be as core functionality. Function make should create JS object with default values given by schema. ``` const Some = object({ age: number(), name: string(), list: array(string()), })...