String searchText = "TEST";
.query(q -> q.bool(b -> b .must(c-> c .match(t -> t .field("FIELD NAME").query(searchText) ))
I need to pass String Array to query. Whats the best way I can do it.
String searchText = "TEST";
.query(q -> q.bool(b -> b .must(c-> c .match(t -> t .field("FIELD NAME").query(searchText) ))
I need to pass String Array to query. Whats the best way I can do it.