Class: Couchbase::Cluster::SearchQuery::MatchAllQuery

Inherits:
Couchbase::Cluster::SearchQuery show all
Defined in:
lib/couchbase/search_options.rb,
/Users/sergey.auseyau/code/couchbase-ruby-client/lib/couchbase/search_options.rb
more...

Overview

A query that matches all indexed documents.

Instance Method Summary collapse

Methods inherited from Couchbase::Cluster::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| ... } ⇒ MatchAllQuery

Returns a new instance of MatchAllQuery.

Yield Parameters:

[View source]

951
952
953
954
# File 'lib/couchbase/search_options.rb', line 951

def initialize
  super()
  yield self if block_given?
end

Instance Method Details

#to_hHash<Symbol, #to_json>

Returns:

[View source]

957
958
959
# File 'lib/couchbase/search_options.rb', line 957

def to_h
  {:match_all => nil}
end