cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Where are default facets for Adaptive Search stored?

Former Member
0 Likes
970

I want to impex new facets both as Solr indexed property in the backoffice and as default facet in the Adaptive Search. For example, the B2C apparel shop has 10 default facets that are shown in grey like "size" and "gender".

As explained in Disabled elements in the adaptive search grey facets indicate inherited facets.

When creating a "blue" facet in the current search configuration it gets stored in AsFacet which can be verified using a flexible search like:

select * from { AsFacet as af join AbstractAsSearchConfiguration as aasc on {aasc.PK} = {af.searchConfiguration} }

However the default facets do not seem to be stored here.

At first I thought the are accessed directly using the SolrIndexedProperty entries created in the Backoffice. However when I create a new indexed propery facet in the backoffice it does not automatically show as Adaptive Search default facet. (Nevertheless it automatically becomes available in the drop down menu for adding a "blue" facet to the search configuration.)

Where are the default facets of e.g. the apparel shop stored?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Likes

Hi, if there is a Search Query Template defined just create a Query Property on the DEFAULT template and you should see it in the Adaptive Search

Former Member
0 Likes

Thanks, this did the trick. In summary for the impexes:

  • SolrIndexedProperty contains the indexed properties created and maintained in the Backoffice. This also includes the facets that are available in the drop down menu in Adaptive Search when redefining a blue facet.

  • SolrSearchQueryProperty refers to the indexed properties that are used by the search query template and are shown as grey in Adaptive Search

  • AsFacet contains the redefined blue facets as seen in Adaptive Search.

Answers (0)