module Neography::Rest::Relationships
Public Instance Methods
delete_relationship(id)
click to toggle source
# File lib/neography/rest/relationships.rb, line 10 def delete_relationship(id) @connection.delete("/relationship/%{id}" % {:id => get_id(id)}) end
get_relationship(id)
click to toggle source
# File lib/neography/rest/relationships.rb, line 6 def get_relationship(id) @connection.get("/relationship/%{id}" % {:id => get_id(id)}) end