NAME
REST::Neo4p::Relationship - Neo4j relationship object
SYNOPSIS
$n1 = $REST::Neo4p::Node->new( {name => 'Harry'} )
$n2 = $REST::Neo4p::Node->new( {name => 'Sally'} );
$r1 = $n1->relate_to($n2, 'met');
$r1->set_property({ when => 'July' });
DESCRIPTION
REST::Neo4p::Relationship
objects represent Neo4j relationships.
METHODS
SEE ALSO
REST::Neo4p, REST::Neo4p::Node, REST::Neo4p::Index.
AUTHOR
Mark A. Jensen
CPAN ID: MAJENSEN
majensen -at- cpan -dot- org
LICENSE
Copyright (c) 2012 Mark A. Jensen. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.