class Neo4j::Cypher::Skip

Can be used to skip result from a return clause

Public Class Methods

new(clause_list, value, context) click to toggle source
Calls superclass method Neo4j::Cypher::Clause::new
   # File lib/neo4j-cypher/return.rb
 9 def initialize(clause_list, value, context)
10   super(clause_list, :skip, context)
11   @value = value
12 end

Public Instance Methods

to_cypher() click to toggle source
   # File lib/neo4j-cypher/return.rb
14 def to_cypher
15   @value
16 end