# PreviousPrice A previous price record for a product variant. This type represents historical pricing information, including both gross and net prices with their last update timestamp. ## Type Definition ```graphql type PreviousPrice { price: Float netPrice: Float updatedAt: String } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | price | Float | The previous price value. | | netPrice | Float | The previous net price value. | | updatedAt | String | The date and time when this price was last updated (RFC 2822 format). | ## Relationships `PreviousPrice` is used to track historical pricing data for product variants. It appears as the node type in `PreviousPriceEdge` connections and is referenced by `ProductVariant` to indicate the previous lower price point. This allows clients to display pricing history and price change information. ## Example ```graphql { price netPrice updatedAt } ``` ## Implements This type does not implement any interfaces. ## Related Types - `PreviousPriceEdge` - `ProductVariant`