This repository has been archived by the owner on Dec 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 154
graphQl-890: Replaced usage of the CartItemQuantity with the CartItem… #899
Merged
magento-engcom-team
merged 11 commits into
2.3-develop
from
GraphQl-890-Replaced-usage-of-CartItemQuantity-with-CartItemInterface
Oct 31, 2019
Merged
Changes from 3 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
b3f510d
graphQl-890: Replaced usage of the CartItemQuantity with the CartItem…
f7ab08e
graphQl-890: fixed static tests
94e8f14
Merge branches '2.3-develop' and 'GraphQl-890-Replaced-usage-of-CartI…
77e3a9c
Merge branches '2.3-develop' and 'GraphQl-890-Replaced-usage-of-CartI…
863d178
graphQl-890: fixed deprecation messages
6297199
GraphQl-890: added shipping addresses to tests
795931f
magento/graphql-ce#890: [Checkout] Replace usage of CartItemQuantity …
lenaorobei c9c13a6
Merge branch '2.3-develop' of github.com:magento/graphql-ce into Grap…
lenaorobei 8b51315
magento/graphql-ce#890: [Checkout] Replace usage of CartItemQuantity …
lenaorobei 344648f
magento/graphql-ce#890: [Checkout] Replace usage of CartItemQuantity …
lenaorobei b9f708b
magento/graphql-ce#890: [Checkout] Replace usage of CartItemQuantity …
lenaorobei File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -217,16 +217,16 @@ interface CartAddressInterface @typeResolver(class: "\\Magento\\QuoteGraphQl\\Mo | |
type ShippingCartAddress implements CartAddressInterface { | ||
available_shipping_methods: [AvailableShippingMethod] @resolver(class: "\\Magento\\QuoteGraphQl\\Model\\Resolver\\ShippingAddress\\AvailableShippingMethods") | ||
selected_shipping_method: SelectedShippingMethod @resolver(class: "\\Magento\\QuoteGraphQl\\Model\\Resolver\\ShippingAddress\\SelectedShippingMethod") | ||
items_weight: Float | ||
cart_items: [CartItemQuantity] | ||
customer_notes: String | ||
items_weight: Float @deprecated | ||
cart_items: [CartItemInterface] | ||
} | ||
|
||
type BillingCartAddress implements CartAddressInterface { | ||
customer_notes: String @deprecated (reason: "The field is used only in shipping address") | ||
} | ||
|
||
type CartItemQuantity { | ||
type CartItemQuantity @deprecated(reason: "Use CartItemInterface instead") { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. From the ticket:
|
||
cart_item_id: Int! | ||
quantity: Float! | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please add
reason
here.