# ProductBulkRate A quantity-based bulk discount for a product. ## Type Definition ```graphql type ProductBulkRate { isPercentage: Boolean amount: Float quantity: Int } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | isPercentage | Boolean | Returns true if discount is a percentage. | | amount | Float | Returns the discount amount. | | quantity | Int | Returns the quantity to purchase to get this discount. | ## Relationships ProductBulkRate represents a tiered discount structure associated with products. It defines the conditions under which a customer receives a bulk discount based on the quantity purchased and specifies whether the discount is applied as a percentage or fixed amount. ## Example ```graphql { isPercentage amount quantity } ``` ## Implements This type does not implement any interfaces. ## Related Types - [Product](/docs/api/product)