I tried to use multi_match in search-query without success. The following query does not find users? Any suggestions why?
{
  "bool" : {
    "must" : [ {
      "multi_match" : {
        "query" : "*",
        "fields" : [ "firstName^3", "lastName^3", "email" ]
      }
    } ]
  }
}