You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there,
Thanks for this nice tool to get familiar to Azure cognitive skills. I have a question related to the checkbox list on the left. I would like to filter based on feature of the path of the documents. I managed to extract the path from the metadata and feed it to the checkbox list. However, when I click nothing happens. I think it's related to the filter that runs in the background when clicking on a checkbox. I think it's related to this specific line:
Where this expects a collection of strings while the path is a single string. Am I correct ? If yes, how do I change that such that the filter accepts the path as input ?
The text was updated successfully, but these errors were encountered:
I believe the "filter" list as implemented actually uses the faceting feature of Azure Cognitive Search, so you would need to change the metadata field in your index to be facetable in order for this to work. References:
This seems to work as the filepaths are properly displayed on the left pannel. However, when I click on one of the checkbox, nothing happens (the checkboxes disappear and the result of the query as well). This lead me to believe that there is an issue with the fact that the filter expects a list or a collection of string, while I'm now passing only one string. Is there a way to filter on that string alone ? The behaviour that I would like is that when I click on the checkbox only the result of that document are shown.
Hi there,
Thanks for this nice tool to get familiar to Azure cognitive skills. I have a question related to the checkbox list on the left. I would like to filter based on feature of the path of the documents. I managed to extract the path from the metadata and feed it to the checkbox list. However, when I click nothing happens. I think it's related to the filter that runs in the background when clicking on a checkbox. I think it's related to this specific line:
AzureSearch_JFK_Files/frontend/src/pages/search-page/service/jfk/mapper.search.ts
Line 165 in 3ee9785
Where this expects a collection of strings while the path is a single string. Am I correct ? If yes, how do I change that such that the filter accepts the path as input ?
The text was updated successfully, but these errors were encountered: