Releases: phpclassic/php-shopify
Releases · phpclassic/php-shopify
v1.1.10
Fixes:
- Added the Collection resource #145
- Shopify Collection #144
- one extra line in code #149
v1.1.9
Fixes:
- Make sure header keys are always lowercase #143
v1.1.8
Fixes:
- Update default Shopify API version to '2020-01'
v1.1.7
Important Bug Fix:
- Bug solved for previous link in ShopifyResounce #140
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
Features / Fixes:
- Added last http code as exception code #133
- Add support for handling cursor pagination in API 2019-07+ #134 #136
v1.1.4
Fixes:
- Add parameter $variables to the GraphQL::post() #109
- Typo fix #124
- Reset config to it's initial values #129
v1.1.3
Fixes:
- Added DraftOrder basics #106
- Updated readme. Using graphql with private apps. #96
- Remove credentials #103
- DiscountCode 'lookup' not available? #107
v1.1.2
Bug Fix
- Currency resource was not added properly.
v1.1.1
Bug Fixes
- ProductListing resource added #17
- Replace http_build_query with custom function #47