Class: DaedalSL::NestedDisMaxQuery

Inherits:
BlockQuery show all
Defined in:
lib/daedal-sl/nested_dis_max_query.rb

Instance Attribute Summary

Attributes inherited from BlockQuery

#base, #parent

Instance Method Summary collapse

Methods inherited from BlockQuery

build, #method_missing

Constructor Details

#initialize(parent, options) ⇒ NestedDisMaxQuery

Returns a new instance of NestedDisMaxQuery.



4
5
6
7
# File 'lib/daedal-sl/nested_dis_max_query.rb', line 4

def initialize(parent, options)
  @parent = parent
  @base = Daedal::Queries::NestedQuery.new(options.merge(query: Daedal::Queries::DisMaxQuery.new))
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class DaedalSL::BlockQuery

Instance Method Details

#queryObject



9
10
11
12
13
# File 'lib/daedal-sl/nested_dis_max_query.rb', line 9

def query
  if (result = yield)
    @base.query.queries << result
  end
end