You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/code/Magento/CatalogCustomerGraphQl/etc/schema.graphqls
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -10,13 +10,13 @@ type ProductTierPrices @doc(description: "ProductTierPrices is deprecated and ha
10
10
customer_group_id: String@deprecated(reason: "customer_group_id is not relevant for storefront.") @doc(description: "The ID of the customer group.")
11
11
qty: Float@deprecated(reason: "ProductTierPrices is deprecated, use TierPrice.quantity.") @doc(description: "The number of items that must be purchased to qualify for tier pricing.")
12
12
value: Float@deprecated(reason: "ProductTierPrices is deprecated. Use TierPrice.final_price") @doc(description: "The price of the fixed price item.")
13
-
percentage_value: Float@decprected(reason: "ProductTierPrices is deprecated. Use TierPrice.discount.") @doc(description: "The percentage discount of the item.")
13
+
percentage_value: Float@deprecated(reason: "ProductTierPrices is deprecated. Use TierPrice.discount.") @doc(description: "The percentage discount of the item.")
14
14
website_id: Float@deprecated(reason: "website_id is not relevant for storefront.") @doc(description: "The ID assigned to the website.")
15
15
}
16
16
17
17
18
18
typeTierPrice@doc(description: "TierPrice defines a tier price, which is a price offered based on a particular quantity purchased.") {
19
19
final_price: Money@doc(desription: "The price of the product at this tier.")
20
-
quantity: Float@doc(description: "The number of items that must be purchased to qualify for tier pricing.")
20
+
quantity: Float@doc(description: "The number of items that must be purchased to qualify for this price tier.")
21
21
discount: ProductDiscount@doc(description: "The price discount that this tier represents.")
0 commit comments