diff --git a/README.md b/README.md index eb8dc9b..c83682c 100644 --- a/README.md +++ b/README.md @@ -1114,18 +1114,48 @@ _Variables_
```graphql -mutation customerAccessTokenCreate($input: CustomerAccessTokenCreateInput!) { - customerAccessTokenCreate(input: $input) { - customerAccessToken { - accessToken - expiresAt +mutation createCart($cartInput: CartInput) { + cartCreate(input: $cartInput) { + cart { + id + createdAt + updatedAt + lines(first: 10) { + edges { + node { + id + merchandise { + ... on ProductVariant { + id + } + } + } } - customerUserErrors { - code - field - message + } + attributes { + key + value + } + estimatedCost { + totalAmount { + amount + currencyCode + } + subtotalAmount { + amount + currencyCode } + totalTaxAmount { + amount + currencyCode + } + totalDutyAmount { + amount + currencyCode + } + } } + } } ```