Nested Query(嵌套查询)
curl -XPUT 'localhost:9200/my_index?pretty' -d'
{
"mappings": {
"type1" : {
"properties" : {
"obj1" : {
"type" : "nested"
}
}
}
}
}'curl -XGET 'localhost:9200/_search?pretty' -d'
{
"query": {
"nested" : {
"path" : "obj1",
"score_mode" : "avg",
"query" : {
"bool" : {
"must" : [
{ "match" : {"obj1.name" : "blue"} },
{ "range" : {"obj1.count" : {"gt" : 5}} }
]
}
}
}
}
}'Last updated