Kasper Mikiewicz

Results 62 issues of Kasper Mikiewicz

```js // Get posts with number of votes not between 50 and 100 data.posts .whereNotBetween('votes', 50, 100) .list() ```

FEATURE
CORE
PRIORITY: MEDIUM
Hacktoberfest

```js const maxNumberOfLikes = await data.comments.max('likes') ```

FEATURE
CORE
PRIORITY: LOW
Hacktoberfest

```js data.comments .avg('likes') .then(averangeNumberOfLikes=> {}) ```

FEATURE
CORE
PRIORITY: LOW
Hacktoberfest

```js data.comments .sum('likes') .then(numberOfLikes => {}) ```

FEATURE
CORE
PRIORITY: LOW
Hacktoberfest

https://github.com/Syncano/syncano-node/blob/170f6390cc45f3e7e537be4cde3f9002baf7f779/packages/lib-js-core/src/settings.js#L13 should include fallback `process.env.SYNCANO_AUTH_KEY`

CORE

**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...

BUG
CORE

`endpoint.url('user-auth/register', {username: 'john'})` => `http://instancename.syncano.space/user-auth/register?username=john`

FEATURE
CORE
PRIORITY: LOW

Supported: `data.posts.pluck('title')` Currently not supported: `data.company_user.pluck('user.email')`

FEATURE
CORE
PRIORITY: LOW

CLI shouldn't force user to write description for custom sockets which are not sent to registry.

CLI