The java-high-level-rest-client provides a method to search on elasticsearch using a term that Shown below its code
SearchSourceBuilder sourceBuilder = new SearchSourceBuilder();
sourceBuilder.query(QueryBuilders.termQuery("user", "kimchy"));
But I want to do a query on multiple fields like this: "user"="kimchy" and/or "city"="london".
I see the multi-search query and multi-match query but they don't do what I want.
Thanks for the help!!