我在下面做了一些查询。
"query" : {
"nested" : {
"path" : "comments.votes",
"query" : { ... },
"inner_hits" : {}
}
}
我将其转换为java api
QueryBuilders.boolQuery().must(
boolQuery
)
.must( // error here if i changed as '.innerHit()'
QueryBuilders.nestedQuery("comments.votes",
QueryBuilders.boolQuery().must( ... )
)
.innerHit( new QueryInnerHitBuilder()) // error here
)
这就是我在ES 2.x版上制作java代码的方式。 由于我更改了ES版本5.x,它根本不起作用。我应该如何将其更改为ES 5.x版本代码?