Skip to content

Commit 1ba3d23

Browse files
committed
DOC-475: Minor updates and typo fixes
1 parent 903e3ed commit 1ba3d23

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/code/Magento/CatalogCustomerGraphQl/etc/schema.graphqls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type ProductTierPrices @doc(description: "Deprecated. Use `TierPrice` instead. D
1515
}
1616

1717

18-
type TierPrice @doc(description: "A price based on the quantity purchased.") {
18+
type TierPrice @doc(description: "Defines a price based on the quantity purchased.") {
1919
final_price: Money @doc(description: "The price of the product at this tier.")
2020
quantity: Float @doc(description: "The minimum number of items that must be purchased to qualify for this price tier.")
2121
discount: ProductDiscount @doc(description: "The price discount that this tier represents.")

app/code/Magento/RelatedProductGraphQl/etc/schema.graphqls

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33

44
interface ProductInterface {
55
related_products: [ProductInterface] @doc(description: "An array of products to be displayed in a Related Products block.") @resolver(class: "Magento\\RelatedProductGraphQl\\Model\\Resolver\\Batch\\RelatedProducts")
6-
upsell_products: [ProductInterface] @doc(description: "Upsell Products") @resolver(class: "Magento\\RelatedProductGraphQl\\Model\\Resolver\\Batch\\UpSellProducts") @doc(description: "An array of products to be displayed in a Upsell Products block.")
6+
upsell_products: [ProductInterface] @doc(description: "Upsell Products") @resolver(class: "Magento\\RelatedProductGraphQl\\Model\\Resolver\\Batch\\UpSellProducts") @doc(description: "An array of products to be displayed in an Upsell Products block.")
77
crosssell_products: [ProductInterface] @doc(description: "Crosssell Products") @resolver(class: "Magento\\RelatedProductGraphQl\\Model\\Resolver\\Batch\\CrossSellProducts") @doc(description: "An array of products to be displayed in a Cross-sell Products block.")
88
}

0 commit comments

Comments
 (0)