Sha256: 9eca2941e4ec817ee8c51fbea35f8c8b6f26baab09e9aadc331e5543365340e9
Contents?: true
Size: 752 Bytes
Versions: 2
Compression:
Stored size: 752 Bytes
Contents
# frozen_string_literal: true require "redis" require "active_support/core_ext/hash/indifferent_access" require "active_support/core_ext/object/blank" require "active_support/core_ext/string/inflections" require "active_support/concern" require_relative "redgraph/version" require_relative "redgraph/util" require_relative "redgraph/graph" require_relative "redgraph/node" require_relative "redgraph/edge" require_relative "redgraph/query_response" require_relative "redgraph/node_model" 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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
redgraph-0.2.0 | lib/redgraph.rb |
redgraph-0.1.4 | lib/redgraph.rb |