class Neo4j::Cypher::Predicate
Public Class Methods
new(clause_list, method_name, input_context, &block)
click to toggle source
Calls superclass method
Neo4j::Cypher::Clause::new
# File lib/neo4j-cypher/predicate.rb 5 def initialize(clause_list, method_name, input_context, &block) 6 super(clause_list, :where, input_context) 7 # Input can either be a property array or a node/relationship collection 8 filter_initialize(input_context, method_name, " WHERE ", &block) 9 end