Releases: phpclassic/php-shopify
Releases · phpclassic/php-shopify
v1.2.15
v1.2.14
What's Changed
- Fixed 400 Bad Request Api Issue with Graphql by @svishalgarg in #343
New Contributors
- @svishalgarg made their first contribution in #343
Full Changelog: v1.2.13...v1.2.14
v1.2.13
v1.2.12
v1.2.11
Update API Version Number
Full Changelog: v1.2.10...v1.2.11
v1.2.10
- Update Default Api Version
Full Changelog: v1.2.9...v1.2.10
v1.2.9
v1.2.8
v1.2.7
v1.2.6
- Add total time spent in sleep during multiple requests #292
- Add support for AssignedFulfillmentOrder resource #295
AssignedFulfillmentOrder Resource
Example:
// Requesting all assigned fulfillment orders
$shopify->AssignedFulfillmentOrder()->get();
// Requesting assigned fulfillment orders (by status)
$shopify->AssignedFulfillmentOrder()->get(["assignment_status" => "fulfillment_requested"]);
// Requesting assigned fulfillment orders (by locations)
$shopify->AssignedFulfillmentOrder()->get(["location_ids" => ["123456789"]]);