Has Parent Query
curl -XGET 'localhost:9200/_search?pretty' -d'
{
"query": {
"has_parent" : {
"parent_type" : "blog",
"query" : {
"term" : {
"tag" : "something"
}
}
}
}
}'Scoring Capabilities(打分能力)
curl -XGET 'localhost:9200/_search?pretty' -d'
{
"query": {
"has_parent" : {
"parent_type" : "blog",
"score" : true,
"query" : {
"term" : {
"tag" : "something"
}
}
}
}
}'ignore unmapped(忽略未映射的)
Sorting(排序)
Last updated