module Neo4j::Cypher::Context::Sortable
Public Instance Methods
_return_item()
click to toggle source
# File lib/neo4j-cypher/context.rb 155 def _return_item 156 @return_item ||= ReturnItem.new(clause_list, self).eval_context 157 end
asc(*props)
click to toggle source
# File lib/neo4j-cypher/context.rb 159 def asc(*props) 160 _return_item.asc(*props) 161 self 162 end
desc(*props)
click to toggle source
# File lib/neo4j-cypher/context.rb 164 def desc(*props) 165 _return_item.desc(*props) 166 self 167 end
limit(val)
click to toggle source
# File lib/neo4j-cypher/context.rb 174 def limit(val) 175 _return_item.limit(val) 176 self 177 end
skip(val)
click to toggle source
# File lib/neo4j-cypher/context.rb 169 def skip(val) 170 _return_item.skip(val) 171 self 172 end