Class: Couchbase::SearchQuery::MatchNoneQuery

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

Overview

A query that matches nothing.

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of MatchNoneQuery.

Yield Parameters:



1037
1038
1039
1040
# File 'lib/couchbase/search_options.rb', line 1037

def initialize
  super
  yield self if block_given?
end

Instance Method Details

#to_hHash<Symbol, #to_json>

Returns:



1043
1044
1045
# File 'lib/couchbase/search_options.rb', line 1043

def to_h
  {:match_none => nil}
end