我做了一些如下查询。
"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 版本代码?