Hi,
would you mind giving me an advice about handling facets and translations?
I would like to acheive the following goals. I will have a document that has a country which has many translation.
Goal 1- I would like to be able to filter on this country field with any language (ex: in an autocomplete).
Goal 2- I would like to be able to create a faceted search where one of the criterias will be the country. Let's say the country would be a multiselect picker.
When the user select a country, I would filter the facets using the country id.
Should I then create as much as faceted country field I have translation ?
plus,
Should I create then a dedicated field to store the country id to be able to filter without taking care of the language?
document fields:
[
{name:'country-en-US', facet:true},
{name:'country-fr-CH', facet:true},
{name:'country-it-IT', facet:true},
{name:'country-id', facet:false},
]
Thanks for help