Class: OpenSearch::DSL::Search::Filters::HasParent
- Inherits:
-
Object
- Object
- OpenSearch::DSL::Search::Filters::HasParent
- Includes:
- BaseComponent
- Defined in:
- lib/opensearch/dsl/search/filters/has_parent.rb
Overview
A filter which returns children documents for parent 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
73 74 75 76 |
# File 'lib/opensearch/dsl/search/filters/has_parent.rb', line 73 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
64 65 66 67 |
# File 'lib/opensearch/dsl/search/filters/has_parent.rb', line 64 def query(*args, &block) @query = block ? @query = OpenSearch::DSL::Search::Query.new(*args, &block) : args.first self end |
#to_hash ⇒ Hash
Converts the query definition to a Hash
82 83 84 85 86 87 88 89 90 91 92 93 |
# File 'lib/opensearch/dsl/search/filters/has_parent.rb', line 82 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 |