Package org.elasticsearch.join.query
Class HasChildQueryBuilder
java.lang.Object
org.elasticsearch.index.query.AbstractQueryBuilder<HasChildQueryBuilder>
org.elasticsearch.join.query.HasChildQueryBuilder
- All Implemented Interfaces:
org.elasticsearch.common.io.stream.NamedWriteable
,org.elasticsearch.common.io.stream.Writeable
,org.elasticsearch.common.xcontent.ToXContent
,org.elasticsearch.common.xcontent.ToXContentObject
,org.elasticsearch.index.query.QueryBuilder
,org.elasticsearch.index.query.Rewriteable<org.elasticsearch.index.query.QueryBuilder>
public class HasChildQueryBuilder
extends org.elasticsearch.index.query.AbstractQueryBuilder<HasChildQueryBuilder>
A query builder for
has_child
query.-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
A query that rewrites into another query usingJoinUtil.createJoinQuery(String, Query, Query, IndexSearcher, ScoreMode, OrdinalMap, int, int)
that executes the actual join.Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.Params
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic boolean
The default value for ignore_unmapped.static int
The default maximum number of children that are required to match for the parent to be considered a match.static int
The default minimum number of children that are required to match for the parent to be considered a match.static String
Fields inherited from class org.elasticsearch.index.query.AbstractQueryBuilder
boost, BOOST_FIELD, DEFAULT_BOOST, NAME_FIELD, queryName
Fields inherited from interface org.elasticsearch.index.query.Rewriteable
MAX_REWRITE_ROUNDS
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
Constructor Summary
ConstructorsConstructorDescriptionHasChildQueryBuilder(String type, org.elasticsearch.index.query.QueryBuilder query, org.apache.lucene.search.join.ScoreMode scoreMode)
HasChildQueryBuilder(org.elasticsearch.common.io.stream.StreamInput in)
Read from a stream. -
Method Summary
Modifier and TypeMethodDescriptionReturns the child typeprotected boolean
doEquals(HasChildQueryBuilder that)
protected int
protected org.elasticsearch.index.query.QueryBuilder
doRewrite(org.elasticsearch.index.query.QueryRewriteContext queryRewriteContext)
protected org.apache.lucene.search.Query
doToQuery(org.elasticsearch.index.query.SearchExecutionContext context)
protected void
doWriteTo(org.elasticsearch.common.io.stream.StreamOutput out)
protected void
doXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)
protected void
extractInnerHitBuilders(Map<String,org.elasticsearch.index.query.InnerHitContextBuilder> innerHits)
static HasChildQueryBuilder
fromXContent(org.elasticsearch.common.xcontent.XContentParser parser)
boolean
Gets whether the query builder will ignore unmapped types (and run aMatchNoDocsQuery
in place of this query) or throw an exception if the type is unmapped.ignoreUnmapped(boolean ignoreUnmapped)
Sets whether the query builder should ignore unmapped types (and run aMatchNoDocsQuery
in place of this query) or throw an exception if the type is unmapped.org.elasticsearch.index.query.InnerHitBuilder
innerHit()
Returns inner hit definition in the scope of this query and reusing the defined type and query.innerHit(org.elasticsearch.index.query.InnerHitBuilder innerHit)
int
Returns the maximum number of children that are required to match for the parent to be considered a match.int
Returns the minimum number of children that are required to match for the parent to be considered a match.minMaxChildren(int minChildren, int maxChildren)
Defines the minimum number of children that are required to match for the parent to be considered a match and the maximum number of children that are required to match for the parent to be considered a match.org.elasticsearch.index.query.QueryBuilder
query()
Returns the children query to execute.org.apache.lucene.search.join.ScoreMode
Returns how the scores from the matching child documents are mapped into the parent document.Methods inherited from class org.elasticsearch.index.query.AbstractQueryBuilder
addValidationError, boost, boost, checkNegativeBoost, declareStandardFields, equals, getName, hashCode, parseInnerQueryBuilder, parseInnerQueryBuilder, printBoostAndQueryName, queryName, queryName, requireValue, rewrite, throwParsingExceptionOnMultipleFields, toQuery, toString, toXContent, writeTo
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
Field Details
-
NAME
- See Also:
- Constant Field Values
-
DEFAULT_MAX_CHILDREN
public static final int DEFAULT_MAX_CHILDRENThe default maximum number of children that are required to match for the parent to be considered a match.- See Also:
- Constant Field Values
-
DEFAULT_MIN_CHILDREN
public static final int DEFAULT_MIN_CHILDRENThe default minimum number of children that are required to match for the parent to be considered a match.- See Also:
- Constant Field Values
-
DEFAULT_IGNORE_UNMAPPED
public static final boolean DEFAULT_IGNORE_UNMAPPEDThe default value for ignore_unmapped.- See Also:
- Constant Field Values
-
-
Constructor Details
-
HasChildQueryBuilder
public HasChildQueryBuilder(String type, org.elasticsearch.index.query.QueryBuilder query, org.apache.lucene.search.join.ScoreMode scoreMode) -
HasChildQueryBuilder
Read from a stream.- Throws:
IOException
-
-
Method Details
-
doWriteTo
- Specified by:
doWriteTo
in classorg.elasticsearch.index.query.AbstractQueryBuilder<HasChildQueryBuilder>
- Throws:
IOException
-
minMaxChildren
Defines the minimum number of children that are required to match for the parent to be considered a match and the maximum number of children that are required to match for the parent to be considered a match. -
innerHit
public org.elasticsearch.index.query.InnerHitBuilder innerHit()Returns inner hit definition in the scope of this query and reusing the defined type and query. -
innerHit
-
query
public org.elasticsearch.index.query.QueryBuilder query()Returns the children query to execute. -
childType
Returns the child type -
scoreMode
public org.apache.lucene.search.join.ScoreMode scoreMode()Returns how the scores from the matching child documents are mapped into the parent document. -
minChildren
public int minChildren()Returns the minimum number of children that are required to match for the parent to be considered a match. The default is 1 -
maxChildren
public int maxChildren()Returns the maximum number of children that are required to match for the parent to be considered a match. The default is 2147483647 -
ignoreUnmapped
Sets whether the query builder should ignore unmapped types (and run aMatchNoDocsQuery
in place of this query) or throw an exception if the type is unmapped. -
ignoreUnmapped
public boolean ignoreUnmapped()Gets whether the query builder will ignore unmapped types (and run aMatchNoDocsQuery
in place of this query) or throw an exception if the type is unmapped. -
doXContent
protected void doXContent(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws IOException- Specified by:
doXContent
in classorg.elasticsearch.index.query.AbstractQueryBuilder<HasChildQueryBuilder>
- Throws:
IOException
-
fromXContent
public static HasChildQueryBuilder fromXContent(org.elasticsearch.common.xcontent.XContentParser parser) throws IOException- Throws:
IOException
-
getWriteableName
-
doToQuery
protected org.apache.lucene.search.Query doToQuery(org.elasticsearch.index.query.SearchExecutionContext context) throws IOException- Specified by:
doToQuery
in classorg.elasticsearch.index.query.AbstractQueryBuilder<HasChildQueryBuilder>
- Throws:
IOException
-
doEquals
- Specified by:
doEquals
in classorg.elasticsearch.index.query.AbstractQueryBuilder<HasChildQueryBuilder>
-
doHashCode
protected int doHashCode()- Specified by:
doHashCode
in classorg.elasticsearch.index.query.AbstractQueryBuilder<HasChildQueryBuilder>
-
doRewrite
protected org.elasticsearch.index.query.QueryBuilder doRewrite(org.elasticsearch.index.query.QueryRewriteContext queryRewriteContext) throws IOException- Overrides:
doRewrite
in classorg.elasticsearch.index.query.AbstractQueryBuilder<HasChildQueryBuilder>
- Throws:
IOException
-
extractInnerHitBuilders
protected void extractInnerHitBuilders(Map<String,org.elasticsearch.index.query.InnerHitContextBuilder> innerHits)- Overrides:
extractInnerHitBuilders
in classorg.elasticsearch.index.query.AbstractQueryBuilder<HasChildQueryBuilder>
-