UNPKG

sarala

Version:

Javascript library to communicate with RESTful API built following JSON API specification. inspired by Laravel’s Eloquent.

18 lines (13 loc) 210 B
--- sidebarDepth: 0 --- ## Paginate ```javascript const post = new Post() let result = await post.paginate(10, 2) // ... ``` ``` GET /posts?page[size]=10&page[number]=2 Accept: application/vnd.api+json ```