Is it possible to get all the tokens for a particular query through the azure search API without linking the actual DB source? I want to have operations like stemming, removing stop words etc. performed on the query entered by the userand then pass it over to SharePoint to get the search results.
For instance if "ran" is the search query, the transformed query sent to SharePoint would include "run", "ran", "running" etc.. I tend to achieve something like what is demoed here
From the documentation which I have browsed through it is stated that the Microsoft English analyzer does it. But what I am getting on using REST API exposed is just the root word (for instance "ran" returns "run" as the token).
Any help / pointers to the solution would be really appreciated.
P.S. Please let me know if any clarification is required.