Class: Elasticsearch::DSL::Search::Filters::HasParent

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

Overview

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

Examples:

Return comments for articles about Ruby


search do
  query do
    filtered do
      filter do
        has_parent do
          type 'article'
          query do
            match title: 'Ruby'
          end
        end
      end
    end
  end
end

See Also:

Instance Method Summary collapse

Methods included from BaseComponent

included, #initialize

Instance Method Details

#filter(*args, &block) ⇒ self

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

Returns:

  • (self)


51
52
53
54
# File 'lib/elasticsearch/dsl/search/filters/has_parent.rb', line 51

def filter(*args, &block)
  @filter = block ? Elasticsearch::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

Returns:

  • (self)


42
43
44
45
# File 'lib/elasticsearch/dsl/search/filters/has_parent.rb', line 42

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

#to_hashHash

Converts the query definition to a Hash

Returns:

  • (Hash)


60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/elasticsearch/dsl/search/filters/has_parent.rb', line 60

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