ThisIsStep2Original post
Rank 2: Process
I work in Germany, so we have many connected words and i need to make sure that searching is including the part of the words.
For example - the title is : "Primärenergieverbrauch" (Primärenergieverbrauch)
and the user is searching for energie.
Currently it doesn't find it. What can i do ?
I use Query.search
LOG query [
'{"method":"limit","values":[25]}',
'{"method":"offset","values":[0]}',
'{"method":"search","attribute":"title","values":["energie"]}'
]
query.push(Query.search(key, searchParams[key]))
Is there something i can do ?
Summary
Issue: Search function is not finding parts of words in titles, causing inconvenience for German developers with connected words like "Primärenergieverbrauch".
Solution: To allow searching for parts of words in titles, consider modifying the search function to use wildcard or partial matching. This can be achieved by adjusting the Query.search method to support either wildcard characters or partial matching of words. By implementing these changes, developers will be able to search and find relevant results more effectively even within connected words.