AttributeTextFilter
No description
type AttributeTextFilter implements IAttributeTextFilter {
value: String!
count: Int!
countTotal: Int
countActive: Int
isSelected: Boolean!
}
Fields
AttributeTextFilter.value ● String! non-null scalar
Attribute value text for filtering.
The actual text value of the attribute that customers can select to filter products. This is the display value shown in filter interfaces.
AttributeTextFilter.count ● Int! non-null scalar
Number of products matching this value with current filters applied.
Count of products that have this attribute value and also match all currently applied search filters and criteria. Used for showing relevant filter options.
AttributeTextFilter.countTotal ● Int scalar
Total number of products with this value across all results.
Count of products that have this attribute value without any filters applied, representing the complete availability of this value in the catalog.
AttributeTextFilter.countActive ● Int scalar
Number of products with this value excluding other attribute filters.
Count of products that have this attribute value with all other attribute filters removed but keeping search terms and category filters. Used for showing filter impact.
AttributeTextFilter.isSelected ● Boolean! non-null scalar
Selection status of this attribute value in current search.
Indicates whether this attribute value is currently selected as an active filter in the customer's search criteria.
Interfaces
IAttributeTextFilter interface
Text-based attribute filter value with product counts and selection state.
Represents a specific text value for an attribute that can be used for filtering products, including occurrence counts and selection status for building interactive filter interfaces.
Member Of
AttributeFilter object ● IAttributeFilter interface