各种query搜索语法
GET /_search
{
"query": {
"match_all": {}
}
}GET /index/type/_searchGET /_search
{
"query": { "match": { "title": "my elasticsearch article" }}
}GET /test_index/test_type/_search
{
"query": {
"multi_match": {
"query": "test",
"fields": ["test_field", "test_field1"]
}
}
}Last updated