8000 Fixes #92: Adds skip method. by mukulmishra18 · Pull Request #93 · Syncano/syncano-server-js · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Fixes #92: Adds skip method. #93

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: devel
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/data.js
70F3
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,18 @@ class Data extends QueryBuilder {
return this.withQuery({page_size: count}) // eslint-disable-line camelcase
}

/**
* Number of objects to skip from the start.
*
* @return {Promise}
*
* @example {@lang javascript}
* const posts = await data.posts.skip(5).list()
*/
skip(count) {
return this.withQuery({last_pk: count, direction: 1}) // eslint-disable-line camelcase
}

/**
* Set order of fetched objects.
*
Expand Down
0