module Neo4j::Cypher::Context::Alias
Public Instance Methods
as(name)
click to toggle source
Typically used in a WITH statement for a count.as(:stuff) or node(42).as(:foo)
# File lib/neo4j-cypher/context.rb 25 def as(name) 26 clause.as_alias(name) 27 self 28 end