I have a document with persons name and I would like to return those document based on partial names, for example:
Querying: "Joseph Gar*"
Should return
Joseph Garret
Joseph Garnier
How to make that query using solr?
I have tried:
q=complete_name:"Joseph Gar*"
q=complete_name:"Joseph Gar"~5
q=complete_name:(Joseph AND Gar)