Skip to Content

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

FieldTypeDescription
countIntThe number of results matching this filter value.
labelStringThe display label for this filter value.
paramNameStringThe value associated with this filter option.
taxonomyValueProductTaxonomyValueThe 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

{ count label paramName taxonomyValue { id name } }

Implements

None