Releases: phpclassic/php-shopify
Releases · phpclassic/php-shopify
v1.1.7
v1.1.6
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 */**
v1.1.5
v1.1.4
v1.1.3
v1.1.2
v1.1.1
v1.1.0
GraphQL - The Journey towards the Future
The GraphQL Admin API is a GraphQL-based alternative to the REST-based Admin API, and makes the functionality of the Shopify admin available at a single GraphQL endpoint.
- This build adds a simple implementation to use GraphQL from this SDK.
- You need to build the GraphQL yourself and send it using this SDK.
- You can use Shopify GraphQL Explorer to build your GraphQL
- See the documentation (README.md) for guidance on it.
v1.1.0-beta
GraphQL - Into The Future
The GraphQL Admin API is a GraphQL-based alternative to the REST-based Admin API, and makes the functionality of the Shopify admin available at a single GraphQL endpoint.
See the README to know how to use this feature from this SDK.