...
Code Block | ||
---|---|---|
| ||
{ "type": "FieldFacet", "title": "Extension", "field": "extension", "op": "OR", "minShow": 2, "maxShow": 5, "show": true, "sendToSolr": true }, |
Parameters
variant (optional) : specify the type of FieldFacet to use. It can take these values :
Name | Optional | Default value | Description |
---|---|---|---|
title | The title showed at the top of the facet | ||
field | The solr field associated to the facet | ||
op | Operator, either “OR” or “AND”. Tells how documents are shown when selecting multiple entries in the facet. If “OR” documents need to have at least one selected element in the concerned field to be selected. If “AND” they need to have all selected elements as part of the concerned field | ||
minShow | The maximum number of elements that are shown if the facet is not expanded | ||
maxShow | The maximum number of elements that are shown if the facet is expanded (after clicking show more) | ||
variant | yes | checkbox | Specify the type of FieldFacet to use. It can take these values : |
...
title: the title showed at the top of the facet
...
field: the solr field associated to the facet
...
op: operator, either “OR” or “AND”. Tells how documents are shown when selecting multiple entries in the facet. If “OR” documents need to have at least one selected element in the concerned field to be selected. If “AND” they need to have all selected elements as part of the concerned field
...
minShow: The maximum number of elements that are shown if the facet is not expanded
...
maxShow: The maximum number of elements that are shown if the facet is expanded (after clicking show more)
|
...
|
...
|
show |
...
yes | true | True to display the FieldFacet in the left panel. This option is only an UI effect. The facet is still registered as a field facet in the query. | |
sendToSolr |
...
yes | false | Set to true to force the query to Solr even if show is false (keep in mind that if show is true, the facet is queried whatever the value of the sendToSolr parameter). Required to be true for the use of field facet tabs (https://datafari.atlassian.net/wiki/spaces/DATAFARI/pages/2625634305/Customizing+DatafariUI#Search-Tabs ), which is its only purpose for now. | |
mappingValues | yes | {} | Define a map key/value to rename labels from this field facet results values. |
QueryFacet:
A query facet displays a facet tied to provided queries with the possibility to filter results based on those queries. It can include children components, providing the ability for the user to provide a custom query. In the example below, we present a way to provide a custom date range.
...