Skip to content

Commit f474538

Browse files
committed
README Update
1 parent f633723 commit f474538

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ $blogArticle = $shopify->Blog($blogID)->Article($articleID)->delete();
238238
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. The full set of supported types can be found in the [GraphQL Admin API reference](https://help.shopify.com/en/api/graphql-admin-api/reference).
239239
You can simply call the GraphQL resource and make a post request with a GraphQL string:
240240

241-
> The GraphQL Admin API requires an access token for making authenticated requests. You can obtain an access token either by creating a private app and using that app's API password, or by following the OAuth authorization process. [Getting Started](https://help.shopify.com/en/api/graphql-admin-api/getting-started#authentication)
241+
> The GraphQL Admin API requires an access token for making authenticated requests. You can obtain an access token either by creating a private app and using that app's API password, or by following the OAuth authorization process. See [GraphQL Authentication Guide](https://help.shopify.com/en/api/graphql-admin-api/getting-started#authentication)
242242
243243
```php
244244
$graphQL = <<<Query
@@ -288,6 +288,7 @@ Some resources are available directly, some resources are only available through
288288
- Customer -> [Order](https://help.shopify.com/api/reference/order)
289289
- [CustomerSavedSearch](https://help.shopify.com/api/reference/customersavedsearch/)
290290
- CustomerSavedSearch -> [Customer](https://help.shopify.com/api/reference/customer/)
291+
- [DraftOrder](https://help.shopify.com/api/reference/draftorder)
291292
- [Discount](https://help.shopify.com/api/reference/discount) _(Shopify Plus Only)_
292293
- [Event](https://help.shopify.com/api/reference/event/)
293294
- [FulfillmentService](https://help.shopify.com/api/reference/fulfillmentservice)
@@ -383,6 +384,12 @@ The custom methods are specific to some resources which may not be available for
383384
- [set($params)](https://help.shopify.com/api/reference/customeraddress#set)
384385
Perform bulk operations against a number of addresses
385386

387+
- DraftOrder ->
388+
- [send_invoice()]()
389+
Send the invoice for a DraftOrder
390+
- [complete()]()
391+
Complete a DraftOrder
392+
386393
- Discount ->
387394
- [enable()]()
388395
Enable a discount

0 commit comments

Comments
 (0)