Class: OpenSearch::DSL::Search::Filters::HasChild
- Inherits:
-
Object
- Object
- OpenSearch::DSL::Search::Filters::HasChild
- Includes:
- BaseComponent
- Defined in:
- lib/opensearch/dsl/search/filters/has_child.rb
Overview
A filter which returns parent documents for children documents matching a query or a filter
Instance Method Summary collapse
-
#filter(*args, &block) ⇒ self
DSL method for building the ‘filter` part of the query definition.
-
#query(*args, &block) ⇒ self
DSL method for building the ‘query` part of the query definition.
-
#to_hash ⇒ Hash
Converts the query definition to a Hash.
Methods included from BaseComponent
Instance Method Details
#filter(*args, &block) ⇒ self
DSL method for building the ‘filter` part of the query definition
74 75 76 77 |
# File 'lib/opensearch/dsl/search/filters/has_child.rb', line 74 def filter(*args, &block) @filter = block ? OpenSearch::DSL::Search::Filter.new(*args, &block) : args.first self end |
#query(*args, &block) ⇒ self
DSL method for building the ‘query` part of the query definition
65 66 67 68 |
# File 'lib/opensearch/dsl/search/filters/has_child.rb', line 65 def query(*args, &block) @query = block ? OpenSearch::DSL::Search::Query.new(*args, &block) : args.first self end |
#to_hash ⇒ Hash
Converts the query definition to a Hash
83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/opensearch/dsl/search/filters/has_child.rb', line 83 def to_hash hash = super if @query _query = @query.respond_to?(:to_hash) ? @query.to_hash : @query hash[self.name].update(query: _query) end if @filter _filter = @filter.respond_to?(:to_hash) ? @filter.to_hash : @filter hash[self.name].update(filter: _filter) end hash end |