
Neo4j - A client for the Neo4j graph database

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;

$neo4j->add_node({ foo => 'bar', baz => [1,2,3,...], .... })

More documentation

Nuba Princigalli, <nuba at stastu.com>

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.

You can find documentation for this module with the perldoc command.
perldoc Neo4j
You can also look for information at:

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.