If I enter the query "apple" i wish to get the results like "xyzapplexyz","apple","applexyz" and NOT like "app" or "appl" . But what I am getting is "applexyz", "app" etc.
I have used EdgeNgram field and I have tried querying using the following :-
1-->> SearchQuerySet().all().autocomplete(authors=query)
2-->> SearchQuerySet().all().filter(authors=query)
3-->> SearchQuerySet().all().filter(content=query)
4-->> SearchQuerySet().all().autocomplete(content=query)
But none of them gives the required results. How can I resolve this issue?