Class: OpenSearch::DSL::Search::Filters::Query
- Inherits:
-
Object
- Object
- OpenSearch::DSL::Search::Filters::Query
- Includes:
- BaseComponent
- Defined in:
- lib/opensearch/dsl/search/filters/query.rb
Overview
A filter which wraps a query so it can be used as a filter
Instance Method Summary collapse
-
#initialize(*args, &block) ⇒ Query
constructor
A new instance of Query.
-
#to_hash ⇒ Hash
Converts the query definition to a Hash.
Methods included from BaseComponent
Constructor Details
Instance Method Details
#to_hash ⇒ Hash
Converts the query definition to a Hash
67 68 69 70 71 72 73 74 |
# File 'lib/opensearch/dsl/search/filters/query.rb', line 67 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 |