Questions tagged [elasticsearch-rest-client]

47 questions
0
votes
1 answer

Howto create a bool query with Elasticsearch Java RestHighLevelClient API

How can I create below bool query with RestHighLevelClient? My attempt doesn't return anything: BoolQueryBuilder query = boolQuery() .must(queryStringQuery(queryString).analyzeWildcard(true).defaultField("*")) …
DarVar
  • 16,882
  • 29
  • 97
  • 146
-1
votes
1 answer

Elasticsearch Rest client for Query DSL

I am trying to write a method using ElasticsearchRestTemplate to fetch data from elasticsearch using query DSL ]. I looked into the documentation, but the documentation is not clear to me how to get the data from elasticsearch using java. Can anyone…
1 2 3
4