class Neo4j::Cypher::Operator::EvalContext

Public Instance Methods

&(other) click to toggle source
    # File lib/neo4j-cypher/operator.rb
103 def &(other)
104   Operator.new(clause.clause_list, clause, other.clause, "and").eval_context
105 end
not() click to toggle source
    # File lib/neo4j-cypher/operator.rb
111 def not
112   clause.not
113   self
114 end
|(other) click to toggle source
    # File lib/neo4j-cypher/operator.rb
107 def |(other)
108   Operator.new(clause.clause_list, clause, other.clause, "or").eval_context
109 end