Skip to Content

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

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 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

{ count label paramName taxonomyValue { id name } }

Implements

This type does not implement any interfaces.