欢迎使用CSDN-markdown编辑器

同一类型下:查找包含(姓名:小星、性别:男孩)的父母信息
curl -XPOST “http://118.144.137.133:9200/school_new/person//_search?pretty” -d ’
{
“query”: {
“filtered”: {
“filter”: {
“and”: [
{
“has_child”: {
“type”: “children”,
“query”: {
“bool”: {
“must”: [
{
“term”: {
“name”: “小星”
}
},
{
“term”: {
“gender”: “男”
}
}
],
“must_not”: [],
“should”: []
}
}
}
}
]
}
}
}
}

不同类型下查找and查找:
curl -XPOST “$ELASTICSEARCH_ENDPOINT/es-joins/person/_search?pretty” -d ’
{
“query”: {
“filtered”: {
“filter”: {
“and”: [
{
“has_child”: {
“type”: “children”,
“query”: {
“term”: {
“gender”: “male”
}
}
}
},
{
“has_child”: {
“type”: “pets”,
“query”: {
“term”: {
“type”: “dog”
}
}
}
}
]
}
}
}
}

你可能感兴趣的:(个人总结)