Class: Couchbase::Cluster::SearchQuery::BooleanQuery
Overview
The boolean query is a useful combination of conjunction and disjunction queries.
Instance Attribute Summary collapse
Instance Method Summary
collapse
boolean_field, booleans, conjuncts, date_range, disjuncts, doc_id, geo_bounding_box, geo_distance, match, match_all, match_none, match_phrase, numeric_range, phrase, prefix, query_string, regexp, term, term_range, wildcard
Instance Attribute Details
#boost ⇒ Float
702
703
704
|
# File 'lib/couchbase/search_options.rb', line 702
def boost
@boost
end
|
Instance Method Details
#must(*queries) ⇒ Object
[View source]
720
721
722
723
|
# File 'lib/couchbase/search_options.rb', line 720
def must(*queries)
@must.and_also(*queries)
self
end
|
#must_not(*queries) ⇒ Object
[View source]
726
727
728
729
|
# File 'lib/couchbase/search_options.rb', line 726
def must_not(*queries)
@must_not.or_else(*queries)
self
end
|
#should(*queries) ⇒ Object
[View source]
732
733
734
735
|
# File 'lib/couchbase/search_options.rb', line 732
def should(*queries)
@should.or_else(*queries)
self
end
|
#should_min(min) ⇒ Object
[View source]
714
715
716
717
|
# File 'lib/couchbase/search_options.rb', line 714
def should_min(min)
@should.min = min
self
end
|
#to_json(*args) ⇒ String
[View source]
738
739
740
741
742
743
744
745
746
747
748
|
# File 'lib/couchbase/search_options.rb', line 738
def to_json(*args)
if @must.empty? && @must_not.empty? && @should.empty?
raise ArgumentError, "BooleanQuery must have at least one non-empty sub-query"
end
data = {}
data["must"] = @must unless @must.empty?
data["must_not"] = @must_not unless @must_not.empty?
data["should"] = @should unless @should.empty?
data["boost"] = boost if boost
data.to_json(*args)
end
|