Hello,
I'm using search-ui and I was provided with a list of suggestions I have to add to the autocomplete.
I want to know what's the best way to implement it on the search-ui app.
I have this ideas:
-
Ingest suggestions in the same engine that documents and set different document_types, then apply global filters to remove suggestions from search results and vice-versa
-
Create a new engine, then use the onSearch middleware to do a raw call to Appsearch to get the suggestions
-
Use a meta index to group both docs and suggestions engines, then use the approach #1
I dont like #1 because searches outside search-ui will be mixed.
I dont like #2 because I dont feel good connecting to appsearch outside the original connector
I dont like #3 because I understand meta-engines are supposed to group engines of the same type(?)
I post to hear from you what's the best option, maybe I missed something from the search-ui documentation.
Thanks