Class: Elasticsearch::DSL::Search::Queries::HasParent
- Inherits:
-
Object
- Object
- Elasticsearch::DSL::Search::Queries::HasParent
- Includes:
- BaseComponent
- Defined in:
- lib/elasticsearch/dsl/search/queries/has_parent.rb
Overview
A query which returns children documents for parent documents matching a query
Instance Method Summary collapse
-
#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
#query(*args, &block) ⇒ self
DSL method for building the ‘query` part of the query definition
53 54 55 56 |
# File 'lib/elasticsearch/dsl/search/queries/has_parent.rb', line 53 def query(*args, &block) @query = block ? @query = Query.new(*args, &block) : args.first self end |
#to_hash ⇒ Hash
Converts the query definition to a Hash
62 63 64 65 66 67 68 69 |
# File 'lib/elasticsearch/dsl/search/queries/has_parent.rb', line 62 def to_hash hash = super if @query _query = @query.respond_to?(:to_hash) ? @query.to_hash : @query hash[self.name].update(query: _query) end hash end |