Kasper Mikiewicz

Results 62 issues of Kasper Mikiewicz

``` Error while syncing (updating) css/coverpage.css Error: Request was throttled. Expected available in 1.0 second. ```

BUG
CLI
PRIORITY: HIGH

This works: ``` data.posts .with('tags') .fields('title', 'tags.name') .list() ``` This doesn't work ``` data.meeting .with('documents', 'documents.tags') .fields('title', 'documents.name', 'documents.tags.name') .list() ``` `documents.tags.name` is not supported. This also is not supported...

FEATURE
CORE

We can add something like this: https://desktop.github.com/release-notes/ Here is POC with syncano-node commits: https://jsfiddle.net/Idered/tbkorak9/102/

PRIORITY: LOW
DOCS

```yaml endpoints: create-wish: parameters: title: type: string description: type: text response: success: exit_code: 200 parameters: title: type: text ``` ```js const wish = { title: 'Lorem ipsum', description: 'Dolor sit...

FEATURE
CORE
PRIORITY: MEDIUM

```js data.posts.skip(100).take(20).list() const PER_PAGE = 20 data.posts.skip(ctx.args.page * PER_PAGE).take(PER_PAGE).list() ```

FEATURE
CORE

Computed method would be run for each element returned from list(). Result of `computed` would be assigned to each of returned objects. ```js data.profiles .computed(profile=> ({ full_name: `${profile.first_name} ${profile.last_name}` }))...

FEATURE
CORE
PRIORITY: MEDIUM

```js import {redirect} from 'syncano-server' redirect('https://example.com') ```

FEATURE
CORE
PRIORITY: MEDIUM

```js // stories column is relation data.flow.fields(':count(stories) as stories_count').list() ```

FEATURE
CORE
PRIORITY: LOW

```yaml models: post: hidden: updated_at, id, $syncano computed: full_name: `${first_name} ${last_name}` scope: published: - column: published value: true unpublished: - column: published value: false fromLastWeek: - column: published value: true...

FEATURE
CORE
PRIORITY: LOW