Class: Elasticsearch::DSL::Search::Queries::HasChild

Inherits:
Object
  • Object
show all
Includes:
BaseComponent
Defined in:
lib/elasticsearch/dsl/search/queries/has_child.rb

Overview

A query which returns parent documents for children documents matching a query

Examples:

Return articles where John has commented


search do
  query do
    has_child do
      type 'comment'
      query do
        match author: 'John'
      end
    end
  end
end

See Also:

Instance Method Summary collapse

Methods included from BaseComponent

included, #initialize

Instance Method Details

#query(*args, &block) ⇒ self

DSL method for building the ‘query` part of the query definition

Returns:

  • (self)


40
41
42
43
# File 'lib/elasticsearch/dsl/search/queries/has_child.rb', line 40

def query(*args, &block)
  @query = block ? @query = Query.new(*args, &block) : args.first
  self
end

#to_hashHash

Converts the query definition to a Hash

Returns:

  • (Hash)


49
50
51
52
53
54
55
56
# File 'lib/elasticsearch/dsl/search/queries/has_child.rb', line 49

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