IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Has Parent Query Usage
edit
IMPORTANT: This documentation is no longer updated. Refer to Elastic's version policy and the latest documentation.
Has Parent Query Usage
editFluent DSL example
editq
.HasParent<Developer>(c => c
.Name("named_query")
.Boost(1.1)
.InnerHits(i => i.Explain())
.Score()
.Query(qq => qq.MatchAll())
.IgnoreUnmapped()
)
Object Initializer syntax example
editnew HasParentQuery
{
Name = "named_query",
Boost = 1.1,
ParentType = Infer.Relation<Developer>(),
InnerHits = new InnerHits { Explain = true },
Query = new MatchAllQuery(),
Score = true,
IgnoreUnmapped = true
}
Example json output.
{
"has_parent": {
"_name": "named_query",
"boost": 1.1,
"parent_type": "developer",
"score": true,
"ignore_unmapped": true,
"query": {
"match_all": {}
},
"inner_hits": {
"explain": true
}
}
}