Class: Couchbase::SearchQuery::BooleanQuery

Inherits:
Couchbase::SearchQuery show all
Defined in:
lib/couchbase/search_options.rb

Overview

The boolean query is a useful combination of conjunction and disjunction queries.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Couchbase::SearchQuery

boolean_field, booleans, conjuncts, date_range, disjuncts, doc_id, geo_bounding_box, geo_distance, geo_polygon, match, match_all, match_none, match_phrase, numeric_range, phrase, prefix, query_string, regexp, term, term_range, #to_json, wildcard

Constructor Details

#initialize {|self| ... } ⇒ BooleanQuery

Returns a new instance of BooleanQuery.

Yield Parameters:



830
831
832
833
834
835
836
# File 'lib/couchbase/search_options.rb', line 830

def initialize
  super()
  @must = ConjunctionQuery.new
  @must_not = DisjunctionQuery.new
  @should = DisjunctionQuery.new
  yield self if block_given?
end

Instance Attribute Details

#boostFloat

Returns:

  • (Float)


827
828
829
# File 'lib/couchbase/search_options.rb', line 827

def boost
  @boost
end

Instance Method Details

#must(*queries) ⇒ Object

Parameters:



845
846
847
848
# File 'lib/couchbase/search_options.rb', line 845

def must(*queries)
  @must.and_also(*queries)
  self
end

#must_not(*queries) ⇒ Object

Parameters:



851
852
853
854
# File 'lib/couchbase/search_options.rb', line 851

def must_not(*queries)
  @must_not.or_else(*queries)
  self
end

#should(*queries) ⇒ Object

Parameters:



857
858
859
860
# File 'lib/couchbase/search_options.rb', line 857

def should(*queries)
  @should.or_else(*queries)
  self
end

#should_min(min) ⇒ Object

Parameters:

  • min (Integer)

    minimal value for “should” disjunction query



839
840
841
842
# File 'lib/couchbase/search_options.rb', line 839

def should_min(min)
  @should.min = min
  self
end

#to_hHash<Symbol, #to_json>

Returns:

Raises:

  • (ArgumentError)


863
864
865
866
867
868
869
870
871
872
# File 'lib/couchbase/search_options.rb', line 863

def to_h
  raise ArgumentError, "BooleanQuery must have at least one non-empty sub-query" if @must.empty? && @must_not.empty? && @should.empty?

  data = {}
  data[:must] = @must.to_h unless @must.empty?
  data[:must_not] = @must_not.to_h unless @must_not.empty?
  data[:should] = @should.to_h unless @should.empty?
  data[:boost] = boost if boost
  data
end