Class: Eson::Search::SpanFirst

Inherits:
Object
  • Object
show all
Includes:
Queries, Query, QueryMethods
Defined in:
lib/eson/search/span_first.rb

Instance Attribute Summary collapse

Attributes included from Queries

#queries

Instance Method Summary collapse

Methods included from Queries

#queries?, register

Methods included from Query

included, #method_missing

Constructor Details

#initialize(options = {}) ⇒ SpanFirst

Returns a new instance of SpanFirst.



13
14
15
# File 'lib/eson/search/span_first.rb', line 13

def initialize(options = {})
  self.options = options
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Eson::Search::Query

Instance Attribute Details

#optionsObject

Returns the value of attribute options.



11
12
13
# File 'lib/eson/search/span_first.rb', line 11

def options
  @options
end

Instance Method Details

#span_first { ... } ⇒ self

Generates a ‘span_first` query in a query context.

Yields:

  • the block containing further options and subqueries

Returns:

  • (self)

    the generated facet



9
# File 'lib/eson/search/span_first.rb', line 9

short_name :span_first

#to_query_hashObject



17
18
19
20
21
22
23
# File 'lib/eson/search/span_first.rb', line 17

def to_query_hash
  result = {}

  result[:match] = queries.to_query_hash

  {name => result.merge(options)}
end