How to make words combination

Hi..

My query is can I make words combinations like I have
suggest["Hammer", "Red", "fortis"]

So if i used suggest query like below
POST music/_search?pretty
{
"suggest": {
"song-suggest" : {
"prefix" : "hamm",
"completion" : {
"field" : "suggest"
}
}
}
}

I will get hammer as a result.....but if user first type hammer and then fortis....Then it 's not working.....
so any idea how after given suggestion of hammer it will search next word from suggestion so that suggestion will display
hammer fortis....

Thanks

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.