Class: Elasticsearch::DSL::Search::Queries::Nested

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

Overview

A query which returns the root documents for nested documents matching the specified query

Examples:

Return articles where John has commented


search do
  query do
    nested do
      path 'comments'
      query do
        match user: '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)


38
39
40
41
# File 'lib/elasticsearch/dsl/search/queries/nested.rb', line 38

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)


47
48
49
50
51
52
53
54
# File 'lib/elasticsearch/dsl/search/queries/nested.rb', line 47

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