# FilterValue A selectable filter value, including its label, count, and URLs to add or remove it. ## Type Definition ```graphql type FilterValue { count: Int label: String paramName: String taxonomyValue: ProductTaxonomyValue } ``` ## Fields | Field | Type | Description | |-------|------|-------------| | count | Int | The number of results matching this filter value. | | label | String | The display label for this filter value. | | paramName | String | The value associated with this filter option. | | taxonomyValue | ProductTaxonomyValue | The related taxonomy value for this filter value. | ## Relationships `FilterValue` represents a single selectable option within a product filter. It contains metadata about the filter option including how many products match it and its display information. The `taxonomyValue` field establishes a relationship to `ProductTaxonomyValue`, which provides additional taxonomy classification data for the filter value. `FilterValue` is used by the `Filter` type to define both minimum and maximum boundary values for range-based filters. ## Example ```graphql { count label paramName taxonomyValue { id name } } ``` ## Implements None ## Related Types - [ProductTaxonomyValue](/reference/storefront/1.3.0/objects/product-taxonomy-value)