NAME

ArangoDB2 - ArangoDB 2.x HTTP API Interface

SYNOPSIS

my $arango = ArangoDB2->new("http://localhost:8259");

my $database = $arango->database("test");
my $collection = $database->collection("test");
my $document = $collection->document();

# create a new document
$document->create({hello => world});
# update existing document
$document->patch({foo => bar});

DESCRIPTION

ArangoDB2 provides an interface to the ArangoDB database.

The Collection and Document APIs are 100% implemented, with the exception of support for ETag based conditional operations.

This is very alpha, so expect significant additions and potentially changes.

See the official docs for details on the API: https://docs.arangodb.com

METHODS

new
admin
database
databases
http
uri
version

SEE ALSO

AUTHOR

Ersun Warncke, <ersun.warncke at outlook.com>

http://ersun.warnckes.com

COPYRIGHT

Copyright (C) 2014 Ersun Warncke

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.