Skip to content

Releases: phpclassic/php-shopify

v1.1.7

17 Feb 08:08
16c3315
Compare
Choose a tag to compare

Important Bug Fix:

  • Bug solved for previous link in ShopifyResounce #140

v1.1.6

16 Feb 11:58
Compare
Choose a tag to compare

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

16 Feb 11:14
Compare
Choose a tag to compare

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

07 Dec 07:04
Compare
Choose a tag to compare

Fixes:

  • Add parameter $variables to the GraphQL::post() #109
  • Typo fix #124
  • Reset config to it's initial values #129

v1.1.3

16 Aug 05:19
Compare
Choose a tag to compare

Fixes:

  • Added DraftOrder basics #106
  • Updated readme. Using graphql with private apps. #96
  • Remove credentials #103
  • DiscountCode 'lookup' not available? #107

v1.1.2

12 Jun 09:50
Compare
Choose a tag to compare

Bug Fix

  • Currency resource was not added properly.

v1.1.1

11 Jun 15:47
Compare
Choose a tag to compare

Bug Fixes

  • ProductListing resource added #17
  • Replace http_build_query with custom function #47

v1.1.0

10 Jun 17:54
b00e01c
Compare
Choose a tag to compare

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

30 May 10:59
Compare
Choose a tag to compare
v1.1.0-beta Pre-release
Pre-release

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.

v1.0.6

23 May 15:17
Compare
Choose a tag to compare

Additions:

  • Customer - Send invite (custom action)

Fixes:

  • Api Versioning breaks app install - Page not found #85