Hi,
when I use the Full Text Search in the Overview Model, I would like to only return the entries where the searchstring matches a value that is displayed in the Overview Model.
Currently the search returns every entry where the searchstring matches a value somewhere in a underlying document.
Does someone know how to change this?
Thanks in advance
I don’t know if A12 already supported something like that. But base on data service document you can’t do it with Full Text Search. Because it search base on the the whole document that is index on solr/lucene.
Full-text Search
refers to the search that is being evaluated on the whole document via the fulltext parameter. This search will be done based on the analyzed index fields. I.e.: "fulltext" : "deliverable" this means that the search engine will look for the keyword deliverable in all fields of the document.
I suggest you can do it by customization you dataloader/dataprovider, change the behavior of Full-Text search become to filter base on those fields. Refer this Filter search
Hi @karin-sparse-tundra ,
Full-text search is searched in all the values of the document to get a match. For more targeted results, you can use Filter search and specify for which field of a document you would like to match values.