Skip to content

Commit dd0d07b

Browse files
committed
MC-18403: Pricing :: Product pricing schema
- schema fixes
1 parent 6d0225b commit dd0d07b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ type ProductTierPrices @doc(description: "ProductTierPrices is deprecated and ha
1010
customer_group_id: String @deprecated(reason: "customer_group_id is not relevant for storefront.") @doc(description: "The ID of the customer group.")
1111
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.")
1212
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.")
1414
website_id: Float @deprecated(reason: "website_id is not relevant for storefront.") @doc(description: "The ID assigned to the website.")
1515
}
1616

1717

1818
type TierPrice @doc(description: "TierPrice defines a tier price, which is a price offered based on a particular quantity purchased.") {
1919
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.")
2121
discount: ProductDiscount @doc(description: "The price discount that this tier represents.")
2222
}

0 commit comments

Comments
 (0)