I have two records in my index.
This records;
> var person = new Person
>     {
>         Id = "1",
>         Firstname = "john smith",
>         Lastname = "hendrick"
>     };
>     var person2 = new Person
>     {
>         Id = "2",
>         Firstname = "smith john",
>         Lastname = "hendrick"
>     };
In kibana, I am writing this query joh\ smith*. And i want to result only "John Smith".But result is empty.Also i try with quotes querystring "joh smith"* still result is empty.What can i do this querystring ?