NAME
Neo4j - A client for the Neo4j graph database
SYNOPSIS
use Neo4j;
my $n = Neo4j->new({ service_root => 'http://localhost:7474/db/data' });
my $node = $n->get_node(3);
$node->set_property('foo', ["bar baz", "bada bada"]);
$node->save;
METHODS
add_node
$neo4j->add_node({ foo => 'bar', baz => [1,2,3,...], .... })
get_node
delete_node
add_relationship
get_relationship
relationship_types
TODO
More documentation
AUTHOR
Nuba Princigalli, <nuba at stastu.com>
BUGS
Please report any bugs or feature requests to bug-neo4j at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Neo4j. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Neo4j
You can also look for information at:
RT: CPAN's request tracker (report bugs here)
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
LICENSE AND COPYRIGHT
Copyright 2012 Nuba Princigalli.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.