Hi guys, one question about faceting.
Let's say we have a collection with, id, product name, category,
And you return documents and facet the categories. so far so good.
Then the user selects the category and you submit an filter category:shoes. In the result facet, you get only one category. But for the UI i want to be able to see all the categories, to select more than only shoes.
How can i achieve that? Is the only solution mutlysearch and create multiple requests, and combine the results?
There could be a problem, because i have a lot of attributes too, and i would need to do many requests to the API to achive multi attribute selection.
Thank you.