class Boolminot::Clauses::Negation

Public Instance Methods

clause() click to toggle source
# File lib/boolminot/clauses/negation.rb, line 15
def clause
  predicate
end
to_elasticsearch(options = {}) click to toggle source
# File lib/boolminot/clauses/negation.rb, line 7
def to_elasticsearch(options = {})
  clause.to_elasticsearch_negated(options)
end
to_raw_bool(options = {}) click to toggle source
# File lib/boolminot/clauses/negation.rb, line 11
def to_raw_bool(options = {})
  to_elasticsearch(options)
end