Class: Elasticsearch::DSL::Search::Filters::Query

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

Overview

A filter which wraps a query so it can be used as a filter

Examples:


search do
  query do
    filtered do
      filter do
        query do
          query_string :title do
            query 'Ruby OR Python'
          end
        end
      end
    end
  end
end

See Also:

Instance Method Summary collapse

Methods included from BaseComponent

included

Constructor Details

#initialize(*args, &block) ⇒ Query

Returns a new instance of Query.



33
34
35
36
37
38
39
# File 'lib/elasticsearch/dsl/search/filters/query.rb', line 33

def initialize(*args, &block)
  super
  if block
    @query = Elasticsearch::DSL::Search::Query.new(*args, &block)
    @block = nil
  end
end

Instance Method Details

#to_hashHash

Converts the query definition to a Hash

Returns:

  • (Hash)


45
46
47
48
49
50
51
52
# File 'lib/elasticsearch/dsl/search/filters/query.rb', line 45

def to_hash
  hash = super
  if @query
    _query = @query.respond_to?(:to_hash) ? @query.to_hash : @query
    hash[self.name].update(_query)
  end
  hash
end