module ActiveGraph::Shared::ClassMethods
Public Instance Methods
neo4j_query(*args)
click to toggle source
This should be used everywhere. Should make it easy to support a driver-per-model system
# File lib/active_graph/shared.rb 15 def neo4j_query(*args) 16 ActiveGraph::Base.query(*args) 17 end
new_query()
click to toggle source
# File lib/active_graph/shared.rb 19 def new_query 20 ActiveGraph::Base.new_query 21 end