syncano-node icon indicating copy to clipboard operation
syncano-node copied to clipboard

Method: skip

Open Idered opened this issue 7 years ago • 0 comments

data.posts.skip(100).take(20).list()

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

Idered avatar Jan 24 '18 09:01 Idered