Goodmorning, i cant figure out the following:
i am trying to do a SearchRequest:
SearchRequest searchRequest = SearchRequest.of(srb -> srb.index(index)
.seqNoPrimaryTerm(true)
.size(0)
.query(QueryBuilders.termsQuery("transaction_id", idList)));
but i keep getting the error:
Cannot resolve method 'query(TermsQueryBuilder)'
is there anyone who knows or can get me started in the right direction?