Skip to content

v1.1.6

Compare
Choose a tag to compare
@tareqtms tareqtms released this 16 Feb 11:58
· 129 commits to master since this release

Cursor Based Pagination

  • Fixed issues to load next page
    Example code:
$productResource =  $shopify->getApi()->Product();
$products = $productResource->get(['limit'=>50]);
$nextPageProducts = $productResource->get($productResource->getNextPageParams());
/* in short: you need to reuse the resource to get the params before making another resource */**