Kasper Mikiewicz
Kasper Mikiewicz
```js // Get posts with number of votes not between 50 and 100 data.posts .whereNotBetween('votes', 50, 100) .list() ```
```js const maxNumberOfLikes = await data.comments.max('likes') ```
```js data.comments .avg('likes') .then(averangeNumberOfLikes=> {}) ```
```js data.comments .sum('likes') .then(numberOfLikes => {}) ```
https://github.com/Syncano/syncano-node/blob/170f6390cc45f3e7e537be4cde3f9002baf7f779/packages/lib-js-core/src/settings.js#L13 should include fallback `process.env.SYNCANO_AUTH_KEY`
**Describe the bug** `.list()` method should have page size of 500. Currently it takes 100 records per request. **To Reproduce** ```jsx // data.posts.create 1000 posts data.posts.list() ``` It executes 10...
`endpoint.url('user-auth/register', {username: 'john'})` => `http://instancename.syncano.space/user-auth/register?username=john`
Supported: `data.posts.pluck('title')` Currently not supported: `data.company_user.pluck('user.email')`
CLI shouldn't force user to write description for custom sockets which are not sent to registry.