Method: Fauna::Query#not_
- Defined in:
- lib/fauna/query.rb
#not_(boolean) ⇒ Object
A not function
Reference: FaunaDB Miscellaneous Functions
795 796 797 |
# File 'lib/fauna/query.rb', line 795 def not_(boolean) Expr.new not: Expr.wrap(boolean) end |