-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New pagination headers as of 2019-07 #39
Labels
Comments
Not sure there's anything I need to do? This library allows you to make the calls and grab the headers. |
How can I grab the headers from a call? |
The library returns a full Guzzle response, so you could do this: $call = $api->rest('GET', '/admin/shop.json');
$result = $call->body->shop; // Now has shop info
$header = $call->response->getHeader('link'); |
Actually... I may implement this internally to return "->link" value. |
6.1.0 has this now. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Would it be possible to support the new cursor based pagination recently added to the REST API version 2019-07?
As details here:
https://help.shopify.com/en/api/guides/paginated-rest-results
The text was updated successfully, but these errors were encountered: