PaginationMeta
current_pageinteger
The current page.
Example:
1
last_pageinteger
The number of the last page.
Example:
1
frominteger
The index of the first item in this page in relation to all items.
Example:
1
tointeger
The index of the last item in this page in relation to all items.
Example:
15
per_pageinteger
The amount of items per page.
Example:
15
totalinteger
The total amount of items in the list.
Example:
50
pathstring
The base path of the request.
Example:
http://query.starlight.test/v2/lista-de-exemplo
queryobject
The query parameters of the request.
Example:
{"page":1,"limit":30}
PaginationMeta
{
"current_page": "1",
"last_page": "1",
"from": "1",
"to": "15",
"per_page": "15",
"total": "50",
"path": "http://query.starlight.test/v2/lista-de-exemplo",
"query": {
"page": 1,
"limit": 30
}
}