Query

查询请求体中的query元素允许通过Query DSL来定义一个查询。

GET /_search
{
    "query" : {
        "term" : { "user" : "kimchy" }
    }
}

Last updated