Hello

I'm trying to programmatically access the facetted browsing features. I got
the first step, getting the top level categories with:

            SearchResult searchResult = featuredSearch.search("a*");
            List<FacetResult> facetResults = searchResult.getFacets();
            for (FacetResult fr : facetResults) {
                final String name = fr.getFacetField().getName();
                System.out.println("name: "+name);
}

How do I get the faceted search entries in the enumerated categories, and
how do I apply such an entry, how do I get the matching content items?

Cheers,
Reto

Reply via email to