# FilterValue Describes a filter value that can be applied to product searches and filtering operations. This type provides information about available filter options, including result counts and display labels. ## 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 individual selectable filter options within a filtering context. It is used by the Filter type to define minimum and maximum boundary values through the `minValue` and `maxValue` fields. Each FilterValue can optionally reference a ProductTaxonomyValue to provide additional taxonomy information about the filter option. ## Example ```graphql { count label paramName taxonomyValue { id name } } ``` ## Implements This type does not implement any interfaces. ## Related Types - [ProductTaxonomyValue](/reference/storefront/v1/objects/product-taxonomy-value)