Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 19220ed

Browse files
committed
Merge remote-tracking branch 'origin/develop' into MAGECLOUD-3258
2 parents e61c13f + 67d1662 commit 19220ed

File tree

58 files changed

+6805
-553
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+6805
-553
lines changed

_data/toc/graphql.yml

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ pages:
1919
- label: Mutations
2020
url: /graphql/mutations.html
2121

22+
- label: GraphQL Caching
23+
url: /graphql/caching.html
24+
2225
- label: Development
2326
children:
2427
- label: Define the GraphQL schema for a module
@@ -27,6 +30,9 @@ pages:
2730
- label: Resolvers
2831
url: /graphql/develop/resolvers.html
2932

33+
- label: Identity class
34+
url: /graphql/develop/identity-class.html
35+
3036
- label: Create a custom urlResolver service
3137
url: /graphql/develop/create-custom-url-resolver.html
3238

@@ -80,8 +86,48 @@ pages:
8086
- label: GroupedProduct endpoint
8187
url: /graphql/reference/grouped-product.html
8288

83-
- label: Quote endpoint
89+
- label: Quote endpoint (cart query)
8490
url: /graphql/reference/quote.html
91+
children:
92+
93+
- label: addSimpleProductsToCart mutation
94+
url: /graphql/reference/quote-add-simple-products.html
95+
96+
- label: addVirtualProductsToCart mutation
97+
url: /graphql/reference/quote-add-virtual-products.html
98+
99+
- label: applyCouponToCart mutation
100+
url: /graphql/reference/quote-apply-coupon.html
101+
102+
- label: createEmptyCart mutation
103+
url: /graphql/reference/quote-create-cart.html
104+
105+
- label: placeOrder mutation
106+
url: /graphql/reference/quote-place-order.html
107+
108+
- label: removeCouponFromCart mutation
109+
url: /graphql/reference/quote-remove-coupon.html
110+
111+
- label: removeItemFromCart mutation
112+
url: /graphql/reference/quote-remove-item.html
113+
114+
- label: setBillingAddressesOnCart mutation
115+
url: /graphql/reference/quote-set-billing-address.html
116+
117+
- label: setGuestEmailOnCart mutation
118+
url: /graphql/reference/quote-set-guest-email.html
119+
120+
- label: setPaymentMethodOnCart mutation
121+
url: /graphql/reference/quote-payment-method.html
122+
123+
- label: setShippingAddressesOnCart mutation
124+
url: /graphql/reference/quote-set-shipping-address.html
125+
126+
- label: setShippingMethodsOnCart mutation
127+
url: /graphql/reference/quote-shipping-method.html
128+
129+
- label: updateCartItems mutation
130+
url: /graphql/reference/quote-update-cart-items.html
85131

86132
- label: Sales endpoint
87133
url: /graphql/reference/sales.html

_data/toc/installation-guide.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,10 @@ pages:
258258
- label: Update the Magento database schema and data
259259
url: /install-gde/install/cli/install-cli-subcommands-db-upgr.html
260260

261+
- label: Configure the lock provider
262+
url: /install-gde/install/cli/install-cli-subcommands-lock.html
263+
include_versions: ["2.2","2.3"]
264+
261265
- label: Configure the store
262266
url: /install-gde/install/cli/install-cli-subcommands-store.html
263267

_data/toc/php-developer-guide.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,10 +210,14 @@ pages:
210210
- label: Configure message Queues
211211
url: /extension-dev-guide/message-queues/config-mq.html
212212

213+
- label: Handling outdated in-memory object states
214+
include_versions: ["2.3"]
215+
url: /extension-dev-guide/message-queues/refresh-config.html
216+
213217
- label: Migrate message queue configuration
214218
include_versions: ["2.1", "2.2", "2.3"]
215219
url: /extension-dev-guide/message-queues/queue-migration.html
216-
220+
217221
- label: Bulk operations
218222
include_versions: ["2.2", "2.3"]
219223
url: /extension-dev-guide/message-queues/bulk-operations.html

_data/toc/release-notes.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ pages:
1010
- label: Component Status
1111
url: /release-notes/component-status.html
1212

13+
- label: Magento Open Source 2.3.2 Release Notes
14+
url: /release-notes/ReleaseNotes2.3.2OpenSource.html
15+
16+
- label: Magento Commerce 2.3.2 Release Notes
17+
url: /release-notes/ReleaseNotes2.3.2Commerce.html
1318

1419
- label: Magento Open Source 2.3.1 Release Notes
1520
url: /release-notes/ReleaseNotes2.3.1OpenSource.html
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Attribute | Data Type | Description
2+
--- | --- | ---
3+
`city` | String! | The city specified for the billing or shipping address
4+
`company` | String | The company specified for the billing or shipping address
5+
`country_code` | String! | The country code and label for the billing or shipping address
6+
`firstname` | String! | The customer's first name
7+
`lastname` | String! | The customer's last name
8+
`postcode` | String | The postal code for the billing or shipping address
9+
`region` | String | The region code and label for the billing or shipping address
10+
`save_in_address_book` | Boolean! | Specifies whether to save the address (`True`/`False`)
11+
`street` | [String]! | An array containing the street for the billing or shipping address
12+
`telephone` | String | The telephone number for the billing or shipping address
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Attribute | Data Type | Description
2+
--- | --- | ---
3+
`quantity` | Float! | The quantity of the item to add to the cart
4+
`sku` | String! | The sku of the product to be added to the cart

_includes/graphql/cart-object.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Attribute | Data Type | Description
2+
--- | --- | ---
3+
`applied_coupon` | [`AppliedCoupon`][AppliedCoupon] | The `AppliedCoupon` object contains the `code` text attribute, which specifies the coupon code
4+
`available_payment_methods` | [AvailablePaymentMethod][AvailablePaymentMethod] | Available payment methods
5+
`billing_address` | [BillingCartAddress][BillingCartAddress] | Contains the billing address specified in the customer's cart
6+
`email` | String | The customer's email address
7+
`items` | [CartItemInterface][CartItemInterface] | Contains the items in the customer's cart
8+
`prices` | [CartPrices][CartPrices] | Contains subtotals and totals
9+
`selected_payment_method` | [SelectedPaymentMethod][SelectedPaymentMethod] | Selected payment method
10+
`shipping_addresses` | [ShippingCartAddress][ShippingCartAddress] | Contains one or more shipping addresses
11+
12+
[AppliedCoupon]: {{page.baseurl}}/graphql/reference/quote.html#AppliedCoupon
13+
[AvailablePaymentMethod]: {{page.baseurl}}/graphql/reference/quote.html#AvailablePaymentMethod
14+
[BillingCartAddress]: {{page.baseurl}}/graphql/reference/quote.html#BillingCartAddress
15+
[CartItemInterface]: {{page.baseurl}}/graphql/reference/quote.html#CartItemInterface
16+
[CartPrices]: {{page.baseurl}}/graphql/reference/quote.html#CartPrices
17+
[SelectedPaymentMethod]: {{page.baseurl}}/graphql/reference/quote.html#SelectedPaymentMethod
18+
[ShippingCartAddress]: {{page.baseurl}}/graphql/reference/quote.html#ShippingCartAddress
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Attribute | Data Type | Description
2+
--- | --- | ---
3+
`id` | Int! | A unique ID assigned to the customizable option
4+
`value_string` | String! | A value assigned to the the customizable option

0 commit comments

Comments
 (0)