Represents a breadcrumb for an automatic facet.

interface AutomaticFacetBreadcrumb {
    facetId: string;
    field: string;
    label: string;
    values: BreadcrumbValue<FacetValue>[];
}

Hierarchy (View Summary)

Properties

facetId: string

The ID of the underlying facet.

field: string

The field on which the underlying facet is configured.

label: string

The label of the underlying facet.

values: BreadcrumbValue<FacetValue>[]

The list of facet values currently selected.