gpt4 book ai didi

elasticsearch - 从Elasticsearch检索所有 parent 的 child

转载 作者:行者123 更新时间:2023-12-03 01:54:36 25 4
gpt4 key购买 nike

我有一个亲子关系,我正在寻找一种在 parent 上进行搜索时检索 child 的方法。

换句话说,我想获取姓名为John的用户的所有帖子。

我正在尝试执行以下操作,但没有任何运气。

CRUD POST http://localhost/myIndex/user/_search  
{
"query": {
"bool": {
name:"John",
"has_child": {
"type": "post",
"query_all": {}
}
}
}
}

最佳答案

尝试:

CRUD POST http://localhost/myIndex/post/_search  
{
"query": {
"has_parent": {
"type": "user",
"query": {
"match": {
"name": "John"
}
}
}
}
}

结帐: https://www.elastic.co/guide/en/elasticsearch/guide/current/has-parent.html

关于elasticsearch - 从Elasticsearch检索所有 parent 的 child ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37543861/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com