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

Commit

Permalink
GraphQL-37: [Cart Operations] Manage Cart Items
Browse files Browse the repository at this point in the history
  • Loading branch information
naydav committed Mar 6, 2019
1 parent 42b002c commit 234f3ad
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/code/Magento/QuoteGraphQl/etc/schema.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ input UpdateCartItemsInput {
cart_items: [CartItemQuantityInput!]!
}

input CartItemQuantityInput {
cart_item_id: Int!
quantity: Float!
}

input RemoveItemFromCartInput {
cart_id: String!
cart_item_id: Int!
Expand Down

0 comments on commit 234f3ad

Please sign in to comment.