1. Go to this page and download the library: Download wwwision/relay-pagination library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
wwwision / relay-pagination example snippets
$loader = # ... instance of \Wwwision\RelayPagination\Loader\Loader
$resultsPerPage = 5; // edges to load per page
$paginator = new Paginator($loader);
$firstPage = $paginator->first($resultsPerPage);
foreach ($firstPage as $edge) {
// $edge->cursor; contains the cursor string
// $edge->node; contains the payload
}
// $firstPage->pageInfo; contains an object with pagination information
if ($firstPage->pageInfo->hasNextPage) {
$secondPage = $paginator->first($resultsPerPage, $firstPage->pageInfo->endCursor);
// ...
}
if ($secondPage->pageInfo->hasPreviousPage) {
$firstPage = $paginator->last($resultsPerPage, $secondPage->pageInfo->startCursor);
// ...
}