Class: Couchbase::SearchQuery::BooleanFieldQuery
- Inherits:
-
Couchbase::SearchQuery
- Object
- Couchbase::SearchQuery
- Couchbase::SearchQuery::BooleanFieldQuery
- Defined in:
- lib/couchbase/search_options.rb,
/code/couchbase-ruby-client/lib/couchbase/search_options.rb
Overview
Allow to match ‘true`/`false` in a field mapped as boolean.
Instance Attribute Summary collapse
Instance Method Summary collapse
-
#initialize(value) {|self| ... } ⇒ BooleanFieldQuery
constructor
A new instance of BooleanFieldQuery.
- #to_h ⇒ Hash<Symbol, #to_json>
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(value) {|self| ... } ⇒ BooleanFieldQuery
Returns a new instance of BooleanFieldQuery.
339 340 341 342 343 |
# File 'lib/couchbase/search_options.rb', line 339 def initialize(value) super() @value = value yield self if block_given? end |
Instance Attribute Details
#boost ⇒ Float
331 332 333 |
# File 'lib/couchbase/search_options.rb', line 331 def boost @boost end |
#field ⇒ String
334 335 336 |
# File 'lib/couchbase/search_options.rb', line 334 def field @field end |
Instance Method Details
#to_h ⇒ Hash<Symbol, #to_json>
346 347 348 349 350 351 |
# File 'lib/couchbase/search_options.rb', line 346 def to_h data = {:bool => @value} data[:boost] = boost if boost data[:field] = field if field data end |