class Neo4j::Core::QueryClauses::UnwindClause
Constants
- KEYWORD
Public Class Methods
clause_join()
click to toggle source
# File lib/neo4j/core/query_clauses.rb 691 def clause_join 692 ' UNWIND ' 693 end
clause_strings(clauses)
click to toggle source
# File lib/neo4j/core/query_clauses.rb 687 def clause_strings(clauses) 688 clauses.map!(&:value) 689 end
Public Instance Methods
from_key_and_value(key, value)
click to toggle source
# File lib/neo4j/core/query_clauses.rb 675 def from_key_and_value(key, value) 676 case value 677 when String, Symbol 678 "#{value} AS #{key}" 679 when Array 680 "#{value.inspect} AS #{key}" 681 else 682 fail ArgError, value 683 end 684 end