lib/redgraph.rb in redgraph-0.1.2 vs lib/redgraph.rb in redgraph-0.1.3
- old
+ new
@@ -8,6 +8,11 @@
require_relative "redgraph/query_response"
module Redgraph
class Error < StandardError; end
class ServerError < Error; end
+ class MissingAliasPrefixError < Error
+ def message
+ "The order clause requires the node/edge alias prefix, ie order('node.foo') instead order('foo')"
+ end
+ end
end