Class: Elasticsearch::DSL::Search::Queries::ConstantScore
- Inherits:
-
Object
- Object
- Elasticsearch::DSL::Search::Queries::ConstantScore
- Includes:
- BaseComponent
- Defined in:
- lib/elasticsearch/dsl/search/queries/constant_score.rb
Overview
A query which wraps another query or filter and returns a constant score for matching documents
Instance Method Summary collapse
-
#filter(*args, &block) ⇒ self
DSL method for building the ‘filter` part of the query definition.
-
#query(*args, &block) ⇒ self
DSL method for building the ‘query` part of the query definition.
-
#to_hash ⇒ Hash
Converts the query definition to a Hash.
Methods included from BaseComponent
Instance Method Details
#filter(*args, &block) ⇒ self
DSL method for building the ‘filter` part of the query definition
57 58 59 60 |
# File 'lib/elasticsearch/dsl/search/queries/constant_score.rb', line 57 def filter(*args, &block) @filter = block ? Filter.new(*args, &block) : args.first self end |
#query(*args, &block) ⇒ self
DSL method for building the ‘query` part of the query definition
48 49 50 51 |
# File 'lib/elasticsearch/dsl/search/queries/constant_score.rb', line 48 def query(*args, &block) @query = block ? @query = Query.new(*args, &block) : args.first self end |
#to_hash ⇒ Hash
Converts the query definition to a Hash
66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/elasticsearch/dsl/search/queries/constant_score.rb', line 66 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 |