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

GraphQL: enter review comments #4553

Merged
merged 1 commit into from
May 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion guides/v2.3/graphql/reference/quote-add-simple-products.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The following example adds a simple product to a cart. The response contains the
mutation {
addSimpleProductsToCart(
input: {
cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG",
cart_id: "IeTUiU0oCXjm0uRqGCOuhQ2AuQatogjG"
cart_items: [
{
data: {
Expand Down
2 changes: 1 addition & 1 deletion guides/v2.3/graphql/reference/quote-update-cart-items.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Setting the quantity to `0` removes an item from the cart.

## Example usage

The following example changes the quantity of cart item `13` to `3`.
The following example changes the quantity of cart item `13`. The new quantity is `3`.

**Request**

Expand Down