欢迎使用6miu-markdown编辑器

    xiaoxiao2021-03-26  31

    同一类型下:查找包含(姓名:小星、性别:男孩)的父母信息 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” } } } } ] } } } } ‘

    转载请注明原文地址: https://ju.6miu.com/read-658399.html

    最新回复(0)