elasticsearch如何使用多字段聚合

ndasle7k  于 2021-06-15  发布在  ElasticSearch
关注(0)|答案(0)|浏览(256)
"query": {
    "bool": {
        "must_not" : [
            {
                "query": {
                    "bool": {
                        "must": [
                            {
                               "term": {
                                 "bool-facet.criteria1": false
                               }
                            },
                            {
                               "term": {
                                 "bool-facet.criteria2": false
                               }
                            }
                        ]
                    }
                }
            }
        ]
    }
}

大家好,我想用elastichclient在elastichsearc中编写这个json查询。我怎么写?

Index("evtest03subnested")
                .From(from)
                .Size(size)
                .Query(q => q
                    .Bool(b => b
                        .Filter(f => f

我想用这种风格写作

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题