FilterValue
A selectable filter value, including its label, count, and URLs to add or remove it.
Type Definition
type FilterValue {
count: Int
label: String
paramName: String
taxonomyValue: ProductTaxonomyValue
}Fields
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
{
count
label
paramName
taxonomyValue {
id
name
}
}Implements
None