Search by multiple match step by step fields

Hi .
I have this query for search people in :

{
	"multi_match" : {
		"fields" : ["full_name^3", "user_name", "title", "first_name", "last_name"],
		"query" : "%v"
	}
} 

I need :
but i want a better than search query ,
i want create a query that when user type a word and this word match with first name field then just show all users that match by first word input and then when user type another input search in user that first match by first name and next match by next input in last name.

i don't know how to create this for auto complete search and step by step search ...

thanks.

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