Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
The official ArangoDB low-level JavaScript clients.
npm install arangojs
git clone https://github.com/arangodb/arangojs.git
cd arangojs
npm install
npm run dist
All asynchronous functions take an optional node-style callback (or "errback") with the following arguments:
For expected API errors, err will be an instance of ArangoError. For any other error responses (4xx/5xx status code), err will be an instance of the apropriate http-errors error type. If the response indicates success but the response body could not be parsed, err will be a SyntaxError. In all of these cases the error object will additionally have a response property containing the server response object.
If Promise
is defined globally, asynchronous functions return a promise if no callback is provided.
If you want to use promises in environments that don't provide the global Promise
constructor, use a promise polyfill like es6-promise or inject a ES6-compatible promise implementation like bluebird into the global scope.
new Database([config]): Database
Creates a new Database instance.
If config is a string, it will be interpreted as config.url.
Arguments
config: Object
(optional)
An object with the following properties:
url: string
(Default: http://localhost:8529
)
Base URL of the ArangoDB server.
If you want to use ArangoDB with HTTP Basic authentication, you can provide the credentials as part of the URL, e.g. http://user:pass@localhost:8529
.
The driver automatically uses HTTPS if you specify an HTTPS url.
If you need to support self-signed HTTPS certificates, you may have to add your certificates to the agentOptions, e.g.:
agentOptions: {
ca: [fs.readFileSync('.ssl/sub.class1.server.ca.pem'), fs.readFileSync('.ssl/ca.pem')]
}
databaseName: string
(Default: _system
)
Name of the active database.
arangoVersion: number
(Default: 20300
)
Value of the x-arango-version
header.
headers: Object
(optional)
An object with additional headers to send with every request.
agent: Agent
(optional)
An http Agent instance to use for connections. This has no effect in the browser.
By default a new http.Agent
instance will be created using the agentOptions.
agentOptions: Object
(Default: see below)
An object with options for the agent. This will be ignored if agent is also provided and has no effect in the browser.
Default: {maxSockets: 3, keepAlive: true, keepAliveMsecs: 1000}
.
promise: Class
(optional)
The Promise
implementation to use or false
to disable promises entirely.
By default the global Promise
constructor will be used if available.
These functions implement the HTTP API for manipulating databases.
database.useDatabase(databaseName): this
Updates the Database instance and its connection string to use the given databaseName, then returns itself.
Arguments
databaseName: string
The name of the database to use.
Examples
var db = require('arangojs')();
db.useDatabase('test');
// The database instance now uses the database "test".
async database.createDatabase(databaseName, [users]): Object
Creates a new database with the given databaseName.
Arguments
databaseName: string
Name of the database to create.
users: Array<Object>
(optional)
If specified, the array must contain objects with the following properties:
username: string
The username of the user to create for the database.
passwd: string
(Default: empty)
The password of the user.
active: boolean
(Default: true
)
Whether the user is active.
extra: Object
(optional)
An object containing additional user data.
Examples
var db = require('arangojs')();
db.createDatabase('mydb', [{username: 'root'}], function (err, info) {
if (err) return console.error(err);
// the database has been created
});
async database.get(): Object
Fetches the database description for the active database from the server.
Examples
var db = require('arangojs')();
db.get(function (err, info) {
if (err) return console.error(err);
// the database exists
});
async database.listDatabases(): Array<string>
Fetches all databases from the server and returns an array of their names.
Examples
var db = require('arangojs')();
db.databases(function (err, names) {
if (err) return console.error(err);
// databases is an array of database names
});
async database.listUserDatabases(): Array<string>
Fetches all databases accessible to the active user from the server and returns an array of their names.
Examples
var db = require('arangojs')();
db.databases(function (err, names) {
if (err) return console.error(err);
// databases is an array of database names
});
async database.dropDatabase(databaseName): Object
Deletes the database with the given databaseName from the server.
var db = require('arangojs')();
db.dropDatabase('mydb', function (err) {
if (err) return console.error(err);
// database "mydb" no longer exists
})
async database.truncate([excludeSystem]): Object
Deletes all documents in all collections in the active database.
Arguments
excludeSystem: boolean
(Default: true
)
Whether system collections should be excluded.
Examples
var db = require('arangojs')();
db.truncate(function (err) {
if (err) return console.error(err);
// all non-system collections in this database are now empty
});
// --or--
db.truncate(false, function (err) {
if (err) return console.error(err);
// I've made a huge mistake...
});
These functions implement the HTTP API for accessing collections.
database.collection(collectionName): DocumentCollection
Returns a DocumentCollection instance for the given collection name.
Arguments
collectionName: string
Name of the edge collection.
Examples
var db = require('arangojs')();
var collection = db.collection('potatos');
database.edgeCollection(collectionName): EdgeCollection
Returns an EdgeCollection instance for the given collection name.
Arguments
collectionName: string
Name of the edge collection.
Examples
var db = require('arangojs')();
var collection = db.edgeCollection('potatos');
async database.listCollections([excludeSystem]): Array<Object>
Fetches all collections from the database and returns an array of collection descriptions.
Arguments
excludeSystem: boolean
(Default: true
)
Whether system collections should be excluded from the results.
Examples
var db = require('arangojs')();
db.listCollections(function (err, collections) {
if (err) return console.error(err);
// collections is an array of collection descriptions
// not including system collections
});
// --or--
db.listCollections(false, function (err, collections) {
if (err) return console.error(err);
// collections is an array of collection descriptions
// including system collections
});
async database.collections([excludeSystem]): Array<Collection>
Fetches all collections from the database and returns an array of DocumentCollection and EdgeCollection instances for the collections.
Arguments
excludeSystem: boolean
(Default: true
)
Whether system collections should be excluded from the results.
Examples
var db = require('arangojs')();
db.listCollections(function (err, collections) {
if (err) return console.error(err);
// collections is an array of DocumentCollection
// and EdgeCollection instances
// not including system collections
});
// --or--
db.listCollections(false, function (err, collections) {
if (err) return console.error(err);
// collections is an array of DocumentCollection
// and EdgeCollection instances
// including system collections
});
These functions implement the HTTP API for accessing general graphs.
database.graph(graphName): Graph
Returns a Graph instance representing the graph with the given graph name.
async database.listGraphs(): Array<Object>
Fetches all graphs from the database and returns an array of graph descriptions.
Examples
var db = require('arangojs')();
db.listGraphs(function (err, graphs) {
if (err) return console.error(err);
// graphs is an array of graph descriptions
});
async database.graphs(): Array<Graph>
Fetches all graphs from the database and returns an array of Graph instances for the graphs.
Examples
var db = require('arangojs')();
db.graphs(function (err, graphs) {
if (err) return console.error(err);
// graphs is an array of Graph instances
});
This function implements the HTTP API for transactions.
async database.transaction(collections, action, [params,] [lockTimeout]): Object
Performs a server-side transaction and returns its return value.
Arguments
collections: Object
An object with the following properties:
read: Array<string>
(optional)
An array of names (or a single name) of collections that will be read from during the transaction.
write: Array<string>
(optional)
An array of names (or a single name) of collections that will be written to or read from during the transaction.
action: string
A string evaluating to a JavaScript function to be executed on the server.
params: Array<any>
(optional)
Parameters that will be passed to the action function.
lockTimeout: number
(optional)
Determines how long the database will wait while attemping to gain locks on collections used by the transaction before timing out.
If collections is an array or string, it will be treated as collections.write.
Please note that while action should be a string evaluating to a well-formed JavaScript function, it's not possible to pass in a JavaScript function directly because the function needs to be evaluated on the server and will be transmitted in plain text.
For more information on transactions, see the HTTP API documentation for transactions.
Examples
var db = require('arangojs')();
var action = string(function () {
// This code will be executed inside ArangoDB!
var db = require('org/arangodb').db;
return db._query('FOR user IN _users RETURN u.user').toArray<any>();
});
db.transaction({read: '_users'}, action, function (err, result) {
if (err) return console.error(err);
// result contains the return value of the action
});
This function implements the HTTP API for single roundtrip AQL queries.
For collection-specific queries see simple queries.
async database.query(query, [bindVars,] [opts]): Cursor
Performs a database query using the given query and bindVars, then returns a new Cursor instance for the result list.
Arguments
query: string
An AQL query string or a query builder instance.
bindVars: Object
(optional)
An object defining the variables to bind the query to.
opts: Object
(optional)
Additional options that will be passed to the query API.
If opts.count is set to true
, the cursor will have a count property set to the query result count.
If query is an object with query and bindVars properties, those will be used as the values of the respective arguments instead.
Examples
var qb = require('aqb');
var db = require('arangojs')();
db.query(
qb.for('u').in('_users')
.filter(qb.eq('u.authData.active', '@active'))
.return('u.user'),
{active: true},
function (err, cursor) {
if (err) return console.error(err);
// cursor is a cursor for the query result
}
);
// -- or --
db.query(
'FOR u IN _users FILTER u.authData.active == @active RETURN u.user',
{active: true},
function (err, cursor) {
if (err) return console.error(err);
// cursor is a cursor for the query result
}
);
aqlQuery(strings, ...args): Object
Template string handler for AQL queries. Converts an ES2015 template string to an object that can be passed to database.query
by converting arguments to bind variables.
Any Collection instances will automatically be converted to collection bind variables.
Examples
var db = require('arangojs')();
var aqlQuery = require('arangojs').aqlQuery;
var userCollection = db.collection('_users');
var role = 'admin';
db.query(
aqlQuery`
FOR user IN ${userCollection}
FILTER user.role == ${role}
RETURN user
`,
function (err, cursor) {
if (err) return console.error(err);
// cursor is a cursor for the query result
}
);
// -- is equivalent to --
db.query(
'FOR user IN @@value0 FILTER user.role == @value1 RETURN user',
{'@value0': userCollection.name, value1: role},
function (err, cursor) {
if (err) return console.error(err);
// cursor is a cursor for the query result
}
);
These functions implement the HTTP API for managing AQL user functions.
async database.listFunctions(): Array<Object>
Fetches a list of all AQL user functions registered with the database.
Examples
var db = require('arangojs')();
db.listFunctions(function (err, functions) {
if (err) return console.error(err);
// functions is a list of function descriptions
})
async database.createFunction(name, code): Object
Creates an AQL user function with the given name and code if it does not already exist or replaces it if a function with the same name already existed.
Arguments
name: string
A valid AQL function name, e.g.: "myfuncs::accounting::calculate_vat"
.
code: string
A string evaluating to a JavaScript function (not a JavaScript function object).
Examples
var qb = require('aqb');
var db = require('arangojs')();
var vat_fn_name = 'myfuncs::acounting::calculate_vat';
var vat_fn_code = string(function (price) {
return price * 0.19;
});
db.createFunction(vat_fn_name, vat_fn_code, function (err) {
if (err) return console.error(err);
// Use the new function in an AQL query with the query builder:
db.query(
qb.for('product').in('products')
.return(qb.MERGE(
{
vat: qb.fn(vat_fn_name)('product.price')
},
'product'
)),
function (err, result) {
// ...
}
);
});
async database.dropFunction(name, [group]): Object
Deletes the AQL user function with the given name from the database.
Arguments
name: string
The name of the user function to drop.
group: boolean
(Default: false
)
If set to true
, all functions with a name starting with name will be deleted; otherwise only the function with the exact name will be deleted.
Examples
var db = require('arangojs')();
db.dropFunction('myfuncs::acounting::calculate_vat', function (err) {
if (err) return console.error(err);
// the function no longer exists
});
database.route([path,] [headers]): Route
Returns a new Route instance for the given path (relative to the database) that can be used to perform arbitrary HTTP requests.
Arguments
path: string
(optional)
The database-relative URL of the route.
headers: Object
(optional)
Default headers that should be sent with each request to the route.
If path is missing, the route will refer to the base URL of the database.
For more information on Route instances see the Route API below.
Examples
var db = require('arangojs')();
var myFoxxApp = db.route('my-foxx-app');
myFoxxApp.post('users', {
username: 'admin',
password: 'hunter2'
}, function (err, result) {
if (err) return console.error(err);
// result is the result of
// POST /_db/_system/my-foxx-app/users
// with JSON request body '{"username": "admin", "password": "hunter2"}'
});
Cursor instances provide an abstraction over the HTTP API's limitations. Unless a method explicitly exhausts the cursor, the driver will only fetch as many batches from the server as necessary. Like the server-side cursors, Cursor instances are incrementally depleted as they are read from.
var db = require('arangojs')();
db.query('FOR x IN 1..100 RETURN x', function (err, cursor) {
if (err) return console.error(err);
// query result list: [1, 2, 3, ..., 99, 100]
cursor.next(function (err, value) {
if (err) return console.error(err);
value === 1;
// remaining result list: [2, 3, 4, ..., 99, 100]
})
});
cursor.count: number
The total number of documents in the query result. This is only available if the count
option was used.
async cursor.all(): Array<Object>
Exhausts the cursor, then returns an array containing all values in the cursor's remaining result list.
Examples
// query result list: [1, 2, 3, 4, 5]
cursor.all(function (err, vals) {
if (err) return console.error(err);
// vals is an array containing the entire query result
Array.isArray(vals);
vals.length === 5;
vals; // [1, 2, 3, 4, 5]
cursor.hasNext() === false;
});
async cursor.next(): Object
Advances the cursor and returns the next value in the cursor's remaining result list. If the cursor has already been exhausted, returns undefined
instead.
Examples
// query result list: [1, 2, 3, 4, 5]
cursor.next(function (err, val) {
if (err) return console.error(err);
val === 1;
// remaining result list: [2, 3, 4, 5]
cursor.next(function (err, val2) {
if (err) return console.error(err);
val2 === 2;
// remaining result list: [3, 4, 5]
});
});
cursor.hasNext(): boolean
Returns true
if the cursor has more values or false
if the cursor has been exhausted.
Examples
cursor.all(function (err) { // exhausts the cursor
if (err) return console.error(err);
cursor.hasNext() === false;
});
async cursor.each(fn): any
Advances the cursor by applying the function fn to each value in the cursor's remaining result list until the cursor is exhausted or fn explicitly returns false
.
Returns the last return value of fn.
Equivalent to Array.prototype.forEach (except async).
Arguments
fn: Function
A function that will be invoked for each value in the cursor's remaining result list until it explicitly returns false
or the cursor is exhausted.
The function receives the following arguments:
value: any
The value in the cursor's remaining result list.
index: number
The index of the value in the cursor's remaining result list.
cursor: Cursor
The cursor itself.
Examples
var results = [];
function doStuff(value) {
var VALUE = value.toUpperCase();
results.push(VALUE);
return VALUE;
}
// query result list: ['a', 'b', 'c']
cursor.each(doStuff, function (err, last) {
if (err) return console.error(err);
String(results) === 'A,B,C';
cursor.hasNext() === false;
last === 'C';
});
async cursor.every(fn): boolean
Advances the cursor by applying the function fn to each value in the cursor's remaining result list until the cursor is exhausted or fn returns a value that evaluates to false
.
Returns false
if fn returned a value that evalutes to false
, or true
otherwise.
Equivalent to Array.prototype.every (except async).
Arguments
fn: Function
A function that will be invoked for each value in the cursor's remaining result list until it returns a value that evaluates to false
or the cursor is exhausted.
The function receives the following arguments:
value: any
The value in the cursor's remaining result list.
index: number
The index of the value in the cursor's remaining result list.
cursor: Cursor
The cursor itself.
function even(value) {
return value % 2 === 0;
}
// query result list: [0, 2, 4, 5, 6]
cursor.every(even, function (err, result) {
if (err) return console.error(err);
result === false; // 5 is not even
cursor.hasNext() === true;
cursor.next(function (err, value) {
if (err) return console.error(err);
value === 6; // next value after 5
});
});
async cursor.some(fn): boolean
Advances the cursor by applying the function fn to each value in the cursor's remaining result list until the cursor is exhausted or fn returns a value that evaluates to true
.
Returns true
if fn returned a value that evalutes to true
, or false
otherwise.
Equivalent to Array.prototype.some (except async).
Examples
function even(value) {
return value % 2 === 0;
}
// query result list: [1, 3, 4, 5]
cursor.some(even, function (err, result) {
if (err) return console.error(err);
result === true; // 4 is even
cursor.hasNext() === true;
cursor.next(function (err, value) {
if (err) return console.error(err);
value === 5; // next value after 4
});
});
cursor.map(fn): Array<any>
Advances the cursor by applying the function fn to each value in the cursor's remaining result list until the cursor is exhausted.
Returns an array of the return values of fn.
Equivalent to Array.prototype.map (except async).
Arguments
fn: Function
A function that will be invoked for each value in the cursor's remaining result list until the cursor is exhausted.
The function receives the following arguments:
value: any
The value in the cursor's remaining result list.
index: number
The index of the value in the cursor's remaining result list.
cursor: Cursor
The cursor itself.
Examples
function square(value) {
return value * value;
}
// query result list: [1, 2, 3, 4, 5]
cursor.map(square, function (err, result) {
if (err) return console.error(err);
result.length === 5;
result; // [1, 4, 9, 16, 25]
cursor.hasNext() === false;
});
cursor.reduce(fn, [accu]): any
Exhausts the cursor by reducing the values in the cursor's remaining result list with the given function fn. If accu is not provided, the first value in the cursor's remaining result list will be used instead (the function will not be invoked for that value).
Equivalent to Array.prototype.reduce (except async).
Arguments
fn: Function
A function that will be invoked for each value in the cursor's remaining result list until the cursor is exhausted.
The function receives the following arguments:
accu: any
The return value of the previous call to fn. If this is the first call, accu will be set to the accu value passed to reduce or the first value in the cursor's remaining result list.
value: any
The value in the cursor's remaining result list.
index: number
The index of the value in the cursor's remaining result list.
cursor: Cursor
The cursor itself.
Examples
function add(a, b) {
return a + b;
}
// query result list: [1, 2, 3, 4, 5]
var baseline = 1000;
cursor.reduce(add, baseline, function (err, result) {
if (err) return console.error(err);
result === (baseline + 1 + 2 + 3 + 4 + 5);
cursor.hasNext() === false;
});
// -- or --
cursor.reduce(add, function (err, result) {
if (err) return console.error(err);
result === (1 + 2 + 3 + 4 + 5);
cursor.hasNext() === false;
});
Route instances provide access for arbitrary HTTP requests. This allows easy access to Foxx apps and other HTTP APIs not covered by the driver itself.
route.route([path], [headers]): Route
Returns a new Route instance for the given path (relative to the current route) that can be used to perform arbitrary HTTP requests.
Arguments
path: string
(optional)
The relative URL of the route.
headers: Object
(optional)
Default headers that should be sent with each request to the route.
If path is missing, the route will refer to the base URL of the database.
Examples
var db = require('arangojs')();
var route = db.route('my-foxx-app');
var users = route.route('users');
// equivalent to db.route('my-foxx-app/users')
async route.get([path,] [qs]): Response
Performs a GET request to the given URL and returns the server response.
Arguments
path: string
(optional)
The route-relative URL for the request. If omitted, the request will be made to the base URL of the route.
qs: string
(optional)
The query string for the request. If qs is an object, it will be translated to a query string.
Examples
var db = require('arangojs')();
var route = db.route('my-foxx-app');
route.get(function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// GET _db/_system/my-foxx-app
});
// -- or --
route.get('users', function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// GET _db/_system/my-foxx-app/users
});
// -- or --
route.get('users', {group: 'admin'}, function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// GET _db/_system/my-foxx-app/users?group=admin
});
async route.post([path,] [body, [qs]]): Response
Performs a POST request to the given URL and returns the server response.
Arguments
path: string
(optional)
The route-relative URL for the request. If omitted, the request will be made to the base URL of the route.
body: string
(optional)
The response body. If body is an object, it will be encoded as JSON.
qs: string
(optional)
The query string for the request. If qs is an object, it will be translated to a query string.
Examples
var db = require('arangojs')();
var route = db.route('my-foxx-app');
route.post(function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// POST _db/_system/my-foxx-app
});
// -- or --
route.post('users', function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// POST _db/_system/my-foxx-app/users
});
// -- or --
route.post('users', {
username: 'admin',
password: 'hunter2'
}, function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// POST _db/_system/my-foxx-app/users
// with JSON request body {"username": "admin", "password": "hunter2"}
});
// -- or --
route.post('users', {
username: 'admin',
password: 'hunter2'
}, {admin: true}, function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// POST _db/_system/my-foxx-app/users?admin=true
// with JSON request body {"username": "admin", "password": "hunter2"}
});
async route.put([path,] [body, [qs]]): Response
Performs a PUT request to the given URL and returns the server response.
Arguments
path: string
(optional)
The route-relative URL for the request. If omitted, the request will be made to the base URL of the route.
body: string
(optional)
The response body. If body is an object, it will be encoded as JSON.
qs: string
(optional)
The query string for the request. If qs is an object, it will be translated to a query string.
Examples
var db = require('arangojs')();
var route = db.route('my-foxx-app');
route.put(function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// PUT _db/_system/my-foxx-app
});
// -- or --
route.put('users/admin', function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// PUT _db/_system/my-foxx-app/users
});
// -- or --
route.put('users/admin', {
username: 'admin',
password: 'hunter2'
}, function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// PUT _db/_system/my-foxx-app/users/admin
// with JSON request body {"username": "admin", "password": "hunter2"}
});
// -- or --
route.put('users/admin', {
username: 'admin',
password: 'hunter2'
}, {admin: true}, function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// PUT _db/_system/my-foxx-app/users/admin?admin=true
// with JSON request body {"username": "admin", "password": "hunter2"}
});
async route.patch([path,] [body, [qs]]): Response
Performs a PATCH request to the given URL and returns the server response.
Arguments
path: string
(optional)
The route-relative URL for the request. If omitted, the request will be made to the base URL of the route.
body: string
(optional)
The response body. If body is an object, it will be encoded as JSON.
qs: string
(optional)
The query string for the request. If qs is an object, it will be translated to a query string.
Examples
var db = require('arangojs')();
var route = db.route('my-foxx-app');
route.patch(function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// PATCH _db/_system/my-foxx-app
});
// -- or --
route.patch('users/admin', function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// PATCH _db/_system/my-foxx-app/users
});
// -- or --
route.patch('users/admin', {
password: 'hunter2'
}, function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// PATCH _db/_system/my-foxx-app/users/admin
// with JSON request body {"password": "hunter2"}
});
// -- or --
route.patch('users/admin', {
password: 'hunter2'
}, {admin: true}, function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// PATCH _db/_system/my-foxx-app/users/admin?admin=true
// with JSON request body {"password": "hunter2"}
});
async route.delete([path,] [qs]): Response
Performs a DELETE request to the given URL and returns the server response.
Arguments
path: string
(optional)
The route-relative URL for the request. If omitted, the request will be made to the base URL of the route.
qs: string
(optional)
The query string for the request. If qs is an object, it will be translated to a query string.
Examples
var db = require('arangojs')();
var route = db.route('my-foxx-app');
route.delete(function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// DELETE _db/_system/my-foxx-app
});
// -- or --
route.delete('users/admin', function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// DELETE _db/_system/my-foxx-app/users/admin
});
// -- or --
route.delete('users/admin', {permanent: true}, function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// DELETE _db/_system/my-foxx-app/users/admin?permanent=true
});
async route.head([path,] [qs]): Response
Performs a HEAD request to the given URL and returns the server response.
Arguments
path: string
(optional)
The route-relative URL for the request. If omitted, the request will be made to the base URL of the route.
qs: string
(optional)
The query string for the request. If qs is an object, it will be translated to a query string.
Examples
var db = require('arangojs')();
var route = db.route('my-foxx-app');
route.head(function (err, result, response) {
if (err) return console.error(err);
// result is empty (no response body)
// response is the response object for
// HEAD _db/_system/my-foxx-app
});
async route.request([opts]): Response
Performs an arbitrary request to the given URL and returns the server response.
Arguments
opts: Object
(optional)
An object with any of the following properties:
path: string
(optional)
The route-relative URL for the request. If omitted, the request will be made to the base URL of the route.
absolutePath: boolean
(Default: false
)
Whether the path is relative to the connection's base URL instead of the route.
body: string
(optional)
The response body. If body is an object, it will be encoded as JSON.
qs: string
(optional)
The query string for the request. If qs is an object, it will be translated to a query string.
headers: Object
(optional)
An object containing additional HTTP headers to be sent with the request.
method: string
(Default: "GET"
)
HTTP method of this request.
Examples
var db = require('arangojs')();
var route = db.route('my-foxx-app');
route.request({
path: 'hello-world',
method: 'POST',
body: {hello: 'world'},
qs: {admin: true}
}, function (err, result) {
if (err) return console.error(err);
// result is the response body of calling
// POST _db/_system/my-foxx-app/hello-world?admin=true
// with JSON request body '{"hello": "world"}'
});
These functions implement the HTTP API for manipulating collections.
The Collection API is implemented by all Collection instances, regardless of their specific type. I.e. it represents a shared subset between instances of DocumentCollection, EdgeCollection, GraphVertexCollection and GraphEdgeCollection.
See the HTTP API documentation for details.
async collection.get(): Object
Retrieves general information about the collection.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.get(function (err, data) {
if (err) return console.error(err);
// data contains general information about the collection
});
async collection.properties(): Object
Retrieves the collection's properties.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.properties(function (err, data) {
if (err) return console.error(err);
// data contains the collection's properties
});
async collection.count(): Object
Retrieves information about the number of documents in a collection.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.count(function (err, data) {
if (err) return console.error(err);
// data contains the collection's count
});
async collection.figures(): Object
Retrieves statistics for a collection.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.figures(function (err, data) {
if (err) return console.error(err);
// data contains the collection's figures
});
async collection.revision(): Object
Retrieves the collection revision ID.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.revision(function (err, data) {
if (err) return console.error(err);
// data contains the collection's revision
});
async collection.checksum([opts]): Object
Retrieves the collection checksum.
Arguments
opts: Object
(optional)
For information on the possible options see the HTTP API for getting collection information.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.checksum(function (err, data) {
if (err) return console.error(err);
// data contains the collection's checksum
});
These functions implement the HTTP API for modifying collections.
async collection.create([properties]): Object
Creates a collection with the given properties for this collection's name, then returns the server response.
Arguments
properties: Object
(optional)
For more information on the properties object, see the HTTP API documentation for creating collections.
Examples
var db = require('arangojs')();
collection = db.collection('potatos');
collection.create(function (err) {
if (err) return console.error(err);
// the document collection "potatos" now exists
});
// -- or --
var collection = var collection = db.edgeCollection('friends');
collection.create({
waitForSync: true // always sync document changes to disk
}, function (err) {
if (err) return console.error(err);
// the edge collection "friends" now exists
});
async collection.load([count]): Object
Tells the server to load the collection into memory.
Arguments
count: boolean
(Default: true
)
If set to false
, the return value will not include the number of documents in the collection (which may speed up the process).
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.load(false, function (err) {
if (err) return console.error(err);
// the collection has now been loaded into memory
});
async collection.unload(): Object
Tells the server to remove the collection from memory.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.unload(function (err) {
if (err) return console.error(err);
// the collection has now been unloaded from memory
});
async collection.setProperties(properties): Object
Replaces the properties of the collection.
Arguments
properties: Object
For information on the properties argument see the HTTP API for modifying collections.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.setProperties({waitForSync: true}, function (err, result) {
if (err) return console.error(err);
result.waitForSync === true;
// the collection will now wait for data being written to disk
// whenever a document is changed
});
async collection.rename(name): Object
Renames the collection. The Collection instance will automatically update its name when the rename succeeds.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.rename('new-collection-name', function (err, result) {
if (err) return console.error(err);
result.name === 'new-collection-name';
collection.name === result.name;
// result contains additional information about the collection
});
async collection.rotate(): Object
Rotates the journal of the collection.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.rotate(function (err, data) {
if (err) return console.error(err);
// data.result will be true if rotation succeeded
});
async collection.truncate(): Object
Deletes all documents in the collection in the database.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.truncate(function (err) {
if (err) return console.error(err);
// the collection "some-collection" is now empty
});
async collection.drop(): Object
Deletes the collection from the database.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.drop(function (err) {
if (err) return console.error(err);
// the collection "some-collection" no longer exists
});
These functions implement the HTTP API for manipulating indexes.
async collection.createIndex(details): Object
Creates an arbitrary index on the collection.
Arguments
details: Object
For information on the possible properties of the details object, see the HTTP API for manipulating indexes.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.createIndex({type: 'cap', size: 20}, function (err, index) {
if (err) return console.error(err);
index.id; // the index's handle
// the index has been created
});
async collection.createCapConstraint(size): Object
Creates a cap constraint index on the collection.
Arguments
size: Object
An object with any of the following properties:
size: number
(optional)
The maximum number of documents in the collection.
byteSize: number
(optional)
The maximum size of active document data in the collection (in bytes).
If size is a number, it will be interpreted as size.size.
For more information on the properties of the size object see the HTTP API for creating cap constraints.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.createCapCollection(20, function (err, index) {
if (err) return console.error(err);
index.id; // the index's handle
index.size === 20;
// the index has been created
});
// -- or --
collection.createCapCollection({size: 20}, function (err, index) {
if (err) return console.error(err);
index.id; // the index's handle
index.size === 20;
// the index has been created
});
async collection.createHashIndex(fields, [opts]): Object
Creates a hash index on the collection.
Arguments
fields: Array<string>
An array of names of document fields on which to create the index. If the value is a string, it will be wrapped in an array automatically.
opts: Object
(optional)
Additional options for this index. If the value is a boolean, it will be interpreted as opts.unique.
For more information on hash indexes, see the HTTP API for hash indexes.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.createHashIndex('favorite-color', function (err, index) {
if (err) return console.error(err);
index.id; // the index's handle
index.fields; // ['favorite-color']
// the index has been created
});
// -- or --
collection.createHashIndex(['favorite-color'], function (err, index) {
if (err) return console.error(err);
index.id; // the index's handle
index.fields; // ['favorite-color']
// the index has been created
});
async collection.createSkipList(fields, [opts]): Object
Creates a skiplist index on the collection.
Arguments
fields: Array<string>
An array of names of document fields on which to create the index. If the value is a string, it will be wrapped in an array automatically.
opts: Object
(optional)
Additional options for this index. If the value is a boolean, it will be interpreted as opts.unique.
For more information on skiplist indexes, see the HTTP API for skiplist indexes.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.createSkipList('favorite-color', function (err, index) {
if (err) return console.error(err);
index.id; // the index's handle
index.fields; // ['favorite-color']
// the index has been created
});
// -- or --
collection.createSkipList(['favorite-color'], function (err, index) {
if (err) return console.error(err);
index.id; // the index's handle
index.fields; // ['favorite-color']
// the index has been created
});
async collection.createGeoIndex(fields, [opts]): Object
Creates a geo-spatial index on the collection.
Arguments
fields: Array<string>
An array of names of document fields on which to create the index. Currently, geo indexes must cover exactly one field. If the value is a string, it will be wrapped in an array automatically.
opts: Object
(optional)
An object containing additional properties of the index.
For more information on the properties of the opts object see the HTTP API for manipulating geo indexes.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.createGeoIndex(['longitude', 'latitude'], function (err, index) {
if (err) return console.error(err);
index.id; // the index's handle
index.fields; // ['longitude', 'latitude']
// the index has been created
});
// -- or --
collection.createGeoIndex('location', {geoJson: true}, function (err, index) {
if (err) return console.error(err);
index.id; // the index's handle
index.fields; // ['location']
// the index has been created
});
async collection.createFulltextIndex(fields, [minLength]): Object
Creates a fulltext index on the collection.
Arguments
fields: Array<string>
An array of names of document fields on which to create the index. Currently, fulltext indexes must cover exactly one field. If the value is a string, it will be wrapped in an array automatically.
minLength (optional):
Minimum character length of words to index. Uses a server-specific default value if not specified.
For more information on fulltext indexes, see the HTTP API for fulltext indexes.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.createFulltextIndex('description', function (err, index) {
if (err) return console.error(err);
index.id; // the index's handle
index.fields; // ['description']
// the index has been created
});
// -- or --
collection.createFulltextIndex(['description'], function (err, index) {
if (err) return console.error(err);
index.id; // the index's handle
index.fields; // ['description']
// the index has been created
});
async collection.index(indexHandle): Object
Fetches information about the index with the given indexHandle and returns it.
Arguments
indexHandle: string
The handle of the index to look up. This can either be a fully-qualified identifier or the collection-specific key of the index. If the value is an object, its id property will be used instead.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.createFulltextIndex('description', function (err, index) {
if (err) return console.error(err);
collection.index(index.id, function (err, result) {
if (err) return console.error(err);
result.id === index.id;
// result contains the properties of the index
});
// -- or --
collection.index(index.id.split('/')[1], function (err, result) {
if (err) return console.error(err);
result.id === index.id;
// result contains the properties of the index
});
});
async collection.indexes(): Array<Object>
Fetches a list of all indexes on this collection.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.createFulltextIndex('description', function (err) {
if (err) return console.error(err);
collection.indexes(function (err, indexes) {
if (err) return console.error(err);
indexes.length === 1;
// indexes contains information about the index
});
});
async collection.dropIndex(indexHandle): Object
Deletes the index with the given indexHandle from the collection.
Arguments
indexHandle: string
The handle of the index to delete. This can either be a fully-qualified identifier or the collection-specific key of the index. If the value is an object, its id property will be used instead.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.createFulltextIndex('description', function (err, index) {
if (err) return console.error(err);
collection.dropIndex(index.id, function (err) {
if (err) return console.error(err);
// the index has been removed from the collection
});
// -- or --
collection.dropIndex(index.id.split('/')[1], function (err) {
if (err) return console.error(err);
// the index has been removed from the collection
});
});
These functions implement the HTTP API for simple queries.
async collection.all([opts]): Cursor
Performs a query to fetch all documents in the collection. Returns a new Cursor instance for the query results.
Arguments
opts: Object
(optional)
For information on the possible options see the HTTP API for returning all documents.
async collection.any(): Object
Fetches a document from the collection at random.
async collection.first([opts]): Array<Object>
Performs a query to fetch the first documents in the collection. Returns an array of the matching documents.
Arguments
opts: Object
(optional)
For information on the possible options see the HTTP API for returning the first documents of a collection.
If opts is a number it is treated as opts.count.
async collection.last([opts]): Array<Object>
Performs a query to fetch the last documents in the collection. Returns an array of the matching documents.
Arguments
opts: Object
(optional)
For information on the possible options see the HTTP API for returning the last documents of a collection.
If opts is a number it is treated as opts.count.
async collection.byExample(example, [opts]): Cursor
Performs a query to fetch all documents in the collection matching the given example. Returns a new Cursor instance for the query results.
Arguments
example: Object
An object representing an example for documents to be matched against.
opts: Object (optional)
For information on the possible options see the HTTP API for fetching documents by example.
async collection.firstExample(example): Object
Fetches the first document in the collection matching the given example.
Arguments
example: Object
An object representing an example for documents to be matched against.
async collection.removeByExample(example, [opts]): Object
Removes all documents in the collection matching the given example.
Arguments
example: Object
An object representing an example for documents to be matched against.
opts: Object (optional)
For information on the possible options see the HTTP API for removing documents by example.
async collection.replaceByExample(example, newValue, [opts]): Object
Replaces all documents in the collection matching the given example with the given newValue.
Arguments
example: Object
An object representing an example for documents to be matched against.
newValue: Object
The new value to replace matching documents with.
opts: Object (optional)
For information on the possible options see the HTTP API for replacing documents by example.
async collection.updateByExample(example, newValue, [opts]): Object
Updates (patches) all documents in the collection matching the given example with the given newValue.
Arguments
example: Object
An object representing an example for documents to be matched against.
newValue: Object
The new value to update matching documents with.
opts: Object (optional)
For information on the possible options see the HTTP API for updating documents by example.
async collection.lookupByKeys(keys): Array<Object>
Fetches the documents with the given keys from the collection. Returns an array of the matching documents.
Arguments
keys: Array
An array of document keys to look up.
async collection.removeByKeys(keys, [opts]): Object
Deletes the documents with the given keys from the collection.
Arguments
keys: Array
An array of document keys to delete.
opts: Object (optional)
For information on the possible options see the HTTP API for removing documents by keys.
This function implements the HTTP API for bulk imports.
async collection.import(data, [opts]): Object
Bulk imports the given data into the collection.
Arguments
data: Array<Array<any>> | Array<Object>
The data to import. This can be an array of documents:
[
{key1: value1, key2: value2}, // document 1
{key1: value1, key2: value2}, // document 2
...
]
Or it can be an array of value arrays following an array of keys.
[
['key1', 'key2'], // key names
[value1, value2], // document 1
[value1, value2], // document 2
...
]
opts: Object
(optional)
If opts is set, it must be an object with any of the following properties:
waitForSync: boolean
(Default: false
)
Wait until the documents have been synced to disk.
details: boolean
(Default: false
)
Whether the response should contain additional details about documents that could not be imported.false*.
type: string
(Default: "auto"
)
Indicates which format the data uses. Can be "documents"
, "array"
or "auto"
.
If data is a JavaScript array, it will be transmitted as a line-delimited JSON stream. If opts.type is set to "array"
, it will be transmitted as regular JSON instead. If data is a string, it will be transmitted as it is without any processing.
For more information on the opts object, see the HTTP API documentation for bulk imports.
Examples
var db = require('arangojs')();
var collection = db.collection('users');
collection.import(
[// document stream
{username: 'admin', password: 'hunter2'},
{username: 'jcd', password: 'bionicman'},
{username: 'jreyes', password: 'amigo'},
{username: 'ghermann', password: 'zeitgeist'}
],
function (err, result) {
if (err) return console.error(err);
result.created === 4;
}
);
// -- or --
collection.import(
[// array stream with header
['username', 'password'], // keys
['admin', 'hunter2'], // row 1
['jcd', 'bionicman'], // row 2
['jreyes', 'amigo'],
['ghermann', 'zeitgeist']
],
function (err, result) {
if (err) return console.error(err);
result.created === 4;
}
);
// -- or --
collection.import(
(// raw line-delimited JSON array stream with header
'["username", "password"]\r\n' +
'["admin", "hunter2"]\r\n' +
'["jcd", "bionicman"]\r\n' +
'["jreyes", "amigo"]\r\n' +
'["ghermann", "zeitgeist"]\r\n'
),
function (err, result) {
if (err) return console.error(err);
result.created === 4;
}
);
These functions implement the HTTP API for manipulating documents.
async collection.replace(documentHandle, newValue, [opts]): Object
Replaces the content of the document with the given documentHandle with the given newValue and returns an object containing the document's metadata.
Arguments
documentHandle: string
The handle of the document to replace. This can either be the _id
or the _key
of a document in the collection, or a document (i.e. an object with an _id
or _key
property).
newValue: Object
The new data of the document.
opts: Object
(optional)
If opts is set, it must be an object with any of the following properties:
waitForSync: boolean
(Default: false
)
Wait until the document has been synced to disk. Default: false
.
rev: string
(optional)
Only replace the document if it matches this revision.
policy: string
(optional)
Determines the behaviour when the revision is not matched:
"last"
, the document will be replaced regardless of the revision."error"
or not set, the replacement will fail with an error.For more information on the opts object, see the HTTP API documentation for working with documents.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
var doc = {number: 1, hello: 'world'};
collection.save(doc, function (err, doc1) {
if (err) return console.error(err);
collection.replace(doc1, {number: 2}, function (err, doc2) {
if (err) return console.error(err);
doc2._id === doc1._id;
doc2._rev !== doc1._rev;
collection.document(doc1, function (err, doc3) {
if (err) return console.error(err);
doc3._id === doc1._id;
doc3._rev === doc2._rev;
doc3.number === 2;
doc3.hello === undefined;
})
});
});
async collection.update(documentHandle, newValue, [opts]): Object
Updates (merges) the content of the document with the given documentHandle with the given newValue and returns an object containing the document's metadata.
Arguments
documentHandle: string
Handle of the document to update. This can be either the _id
or the _key
of a document in the collection, or a document (i.e. an object with an _id
or _key
property).
newValue: Object
The new data of the document.
opts: Object
(optional)
If opts is set, it must be an object with any of the following properties:
waitForSync: boolean
(Default: false
)
Wait until document has been synced to disk.
keepNull: boolean
(Default: true
)
If set to false
, properties with a value of null
indicate that a property should be deleted.
mergeObjects: boolean
(Default: true
)
If set to false
, object properties that already exist in the old document will be overwritten rather than merged. This does not affect arrays.
rev: string
(optional)
Only update the document if it matches this revision.
policy: string
(optional)
Determines the behaviour when the revision is not matched:
"last"
, the document will be replaced regardless of the revision."error"
or not set, the replacement will fail with an error.For more information on the opts object, see the HTTP API documentation for working with documents.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
var doc = {number: 1, hello: 'world'};
collection.save(doc, function (err, doc1) {
if (err) return console.error(err);
collection.update(doc1, {number: 2}, function (err, doc2) {
if (err) return console.error(err);
doc2._id === doc1._id;
doc2._rev !== doc1._rev;
collection.document(doc2, function (err, doc3) {
if (err) return console.error(err);
doc3._id === doc2._id;
doc3._rev === doc2._rev;
doc3.number === 2;
doc3.hello === doc.hello;
});
});
});
async collection.remove(documentHandle, [opts]): Object
Deletes the document with the given documentHandle from the collection.
Arguments
documentHandle: string
The handle of the document to delete. This can be either the _id
or the _key
of a document in the collection, or a document (i.e. an object with an _id
or _key
property).
opts: Object
(optional)
If opts is set, it must be an object with any of the following properties:
waitForSync: boolean
(Default: false
)
Wait until document has been synced to disk.
rev: string
(optional)
Only update the document if it matches this revision.
policy: string
(optional)
Determines the behaviour when the revision is not matched:
"last"
, the document will be replaced regardless of the revision."error"
or not set, the replacement will fail with an error.For more information on the opts object, see the HTTP API documentation for working with documents.
Examples
var db = require('arangojs')();
var collection = db.collection('some-collection');
collection.remove('some-doc', function (err) {
if (err) return console.error(err);
// document 'some-collection/some-doc' no longer exists
});
// -- or --
collection.remove('some-collection/some-doc', function (err) {
if (err) return console.error(err);
// document 'some-collection/some-doc' no longer exists
});
async collection.list([type]): Array<string>
Retrieves a list of references for all documents in the collection.
Arguments
type: string
(Default: "id"
)
The format of the document references:
"id"
, each reference will be the _id
of the document."key"
, each reference will be the _key
of the document."path"
, each reference will be the URI path of the document.The DocumentCollection API extends the Collection API (see above) with the following methods.
async documentCollection.document(documentHandle): Object
Retrieves the document with the given documentHandle from the collection.
Arguments
documentHandle: string
The handle of the document to retrieve. This can be either the _id
or the _key
of a document in the collection, or a document (i.e. an object with an _id
or _key
property).
Examples
var db = require('arangojs')();
var collection = db.collection('my-docs');
collection.document('some-key', function (err, doc) {
if (err) return console.error(err);
// the document exists
doc._key === 'some-key';
doc._id === 'my-docs/some-key';
});
// -- or --
collection.document('my-docs/some-key', function (err, doc) {
if (err) return console.error(err);
// the document exists
doc._key === 'some-key';
doc._id === 'my-docs/some-key';
});
async documentCollection.save(data): Object
Creates a new document with the given data and returns an object containing the document's metadata.
Arguments
data: Object
The data of the new document, may include a _key
.
Examples
var db = require('arangojs')();
var collection = db.collection('my-docs');
var doc = {some: 'data'};
collection.save(doc, function (err, doc1) {
if (err) return console.error(err);
doc1._key; // the document's key
doc1._id === ('my-docs/' + doc1._key);
collection.document(doc, function (err, doc2) {
if (err) return console.error(err);
doc2._id === doc1._id;
doc2._rev === doc1._rev;
doc2.some === 'data';
});
});
The EdgeCollection API extends the Collection API (see above) with the following methods.
async edgeCollection.edge(documentHandle): Object
Retrieves the edge with the given documentHandle from the collection.
Arguments
documentHandle: string
The handle of the edge to retrieve. This can be either the _id
or the _key
of an edge in the collection, or an edge (i.e. an object with an _id
or _key
property).
Examples
var db = require('arangojs')();
var collection = var collection = db.edgeCollection('edges');
collection.edge('some-key', function (err, edge) {
if (err) return console.error(err);
// the edge exists
edge._key === 'some-key';
edge._id === 'edges/some-key';
});
// -- or --
collection.edge('edges/some-key', function (err, edge) {
if (err) return console.error(err);
// the edge exists
edge._key === 'some-key';
edge._id === 'edges/some-key';
});
async edgeCollection.save(data, [fromId, toId]): Object
Creates a new edge between the documents fromId and toId with the given data and returns an object containing the edge's metadata.
Arguments
data: Object
The data of the new edge. If fromId and toId are not specified, the data needs to contain the properties _from and _to.
fromId: string
(optional)
The handle of the start vertex of this edge. This can be either the _id
of a document in the database, the _key
of an edge in the collection, or a document (i.e. an object with an _id
or _key
property).
toId: string
(optional)
The handle of the end vertex of this edge. This can be either the _id
of a document in the database, the _key
of an edge in the collection, or a document (i.e. an object with an _id
or _key
property).
Examples
var db = require('arangojs')();
var collection = db.edgeCollection('edges');
var edge = {some: 'data'};
collection.save(
edge,
'vertices/start-vertex',
'vertices/end-vertex',
function (err, edge1) {
if (err) return console.error(err);
edge1._key; // the edge's key
edge1._id === ('edges/' + edge1._key);
collection.edge(edge, function (err, edge2) {
if (err) return console.error(err);
edge2._key === edge1._key;
edge2._rev = edge1._rev;
edge2.some === edge.some;
edge2._from === 'vertices/start-vertex';
edge2._to === 'vertices/end-vertex';
});
}
);
// -- or --
collection.save(
{
some: 'data',
_from: 'verticies/start-vertex',
_to: 'vertices/end-vertex'
},
function (err, edge) {
if (err) return console.error(err);
// ...
}
)
async edgeCollection.edges(documentHandle): Array<Object>
Retrieves a list of all edges of the document with the given documentHandle.
Arguments
documentHandle: string
The handle of the document to retrieve the edges of. This can be either the _id
of a document in the database, the _key
of an edge in the collection, or a document (i.e. an object with an _id
or _key
property).
Examples
var db = require('arangojs')();
var collection = db.edgeCollection('edges');
collection.import([
['_key', '_from', '_to'],
['x', 'vertices/a', 'vertices/b'],
['y', 'vertices/a', 'vertices/c'],
['z', 'vertices/d', 'vertices/a']
], function (err) {
if (err) return console.error(err);
collection.edges('vertices/a', function (err, edges) {
if (err) return console.error(err);
edges.length === 3;
edges.map(function (edge) {return edge._key;}); // ['x', 'y', 'z']
});
});
async edgeCollection.inEdges(documentHandle): Array<Object>
Retrieves a list of all incoming edges of the document with the given documentHandle.
Arguments
documentHandle: string
The handle of the document to retrieve the edges of. This can be either the _id
of a document in the database, the _key
of an edge in the collection, or a document (i.e. an object with an _id
or _key
property).
Examples
var db = require('arangojs')();
var collection = db.edgeCollection('edges');
collection.import([
['_key', '_from', '_to'],
['x', 'vertices/a', 'vertices/b'],
['y', 'vertices/a', 'vertices/c'],
['z', 'vertices/d', 'vertices/a']
], function (err) {
if (err) return console.error(err);
collection.inEdges('vertices/a', function (err, edges) {
if (err) return console.error(err);
edges.length === 1;
edges[0]._key === 'z';
});
});
async edgeCollection.outEdges(documentHandle): Array<Object>
Retrieves a list of all outgoing edges of the document with the given documentHandle.
Arguments
documentHandle: string
The handle of the document to retrieve the edges of. This can be either the _id
of a document in the database, the _key
of an edge in the collection, or a document (i.e. an object with an _id
or _key
property).
Examples
var db = require('arangojs')();
var collection = db.edgeCollection('edges');
collection.import([
['_key', '_from', '_to'],
['x', 'vertices/a', 'vertices/b'],
['y', 'vertices/a', 'vertices/c'],
['z', 'vertices/d', 'vertices/a']
], function (err) {
if (err) return console.error(err);
collection.outEdges('vertices/a', function (err, edges) {
if (err) return console.error(err);
edges.length === 2;
edges.map(function (edge) {return edge._key;}); // ['x', 'y']
});
});
async edgeCollection.traversal(startVertex, opts): Object
Performs a traversal starting from the given startVertex and following edges contained in this edge collection.
Arguments
startVertex: string
The handle of the start vertex. This can be either the _id
of a document in the database, the _key
of an edge in the collection, or a document (i.e. an object with an _id
or _key
property).
opts: Object
See the HTTP API documentation for details on the additional arguments.
Please note that while opts.filter, opts.visitor, opts.init, opts.expander and opts.sort should be strings evaluating to well-formed JavaScript code, it's not possible to pass in JavaScript functions directly because the code needs to be evaluated on the server and will be transmitted in plain text.
Examples
var db = require('arangojs')();
var collection = db.edgeCollection('edges');
collection.import([
['_key', '_from', '_to'],
['x', 'vertices/a', 'vertices/b'],
['y', 'vertices/b', 'vertices/c'],
['z', 'vertices/c', 'vertices/d']
], function (err) {
if (err) return console.error(err);
collection.traversal('vertices/a', {
direction: 'outbound',
visitor: 'result.vertices.push(vertex._key);',
init: 'result.vertices = [];'
}, function (err, result) {
if (err) return console.error(err);
result.vertices; // ['a', 'b', 'c', 'd']
});
});
These functions implement the HTTP API for manipulating graphs.
async graph.get(): Object
Retrieves general information about the graph.
Examples
var db = require('arangojs')();
var graph = db.graph('some-graph');
graph.get(function (err, data) {
if (err) return console.error(err);
// data contains general information about the graph
});
async graph.create(properties): Object
Creates a graph with the given properties for this graph's name, then returns the server response.
Arguments
properties: Object
For more information on the properties object, see the HTTP API documentation for creating graphs.
Examples
var db = require('arangojs')();
var graph = db.graph('some-graph');
graph.create({
edgeDefinitions: [
{
collection: 'edges',
from: [
'start-vertices'
],
to: [
'end-vertices'
]
}
]
}, function (err, graph) {
if (err) return console.error(err);
// graph is a Graph instance
// for more information see the Graph API below
});
async graph.drop([dropCollections]): Object
Deletes the graph from the database.
Arguments
dropCollections: boolean
(optional)
If set to true
, the collections associated with the graph will also be deleted.
Examples
var db = require('arangojs')();
var graph = db.graph('some-graph');
graph.drop(function (err) {
if (err) return console.error(err);
// the graph "some-graph" no longer exists
});
graph.vertexCollection(collectionName): GraphVertexCollection
Returns a new GraphVertexCollection instance with the given name for this graph.
Arguments
collectionName: string
Name of the vertex collection.
Examples
var db = require('arangojs')();
var graph = db.graph('some-graph');
var collection = graph.vertexCollection('vertices');
collection.name === 'vertices';
// collection is a GraphVertexCollection
async graph.addVertexCollection(collectionName): Object
Adds the collection with the given collectionName to the graph's vertex collections.
Arguments
collectionName: string
Name of the vertex collection to add to the graph.
Examples
var db = require('arangojs')();
var graph = db.graph('some-graph');
graph.addVertexCollection('vertices', function (err) {
if (err) return console.error(err);
// the collection "vertices" has been added to the graph
});
async graph.removeVertexCollection(collectionName, [dropCollection]): Object
Removes the vertex collection with the given collectionName from the graph.
Arguments
collectionName: string
Name of the vertex collection to remove from the graph.
dropCollection: boolean
(optional)
If set to true
, the collection will also be deleted from the database.
Examples
var db = require('arangojs')();
var graph = db.graph('some-graph');
graph.removeVertexCollection('vertices', function (err) {
if (err) return console.error(err);
// collection "vertices" has been removed from the graph
});
// -- or --
graph.removeVertexCollection('vertices', true, function (err) {
if (err) return console.error(err);
// collection "vertices" has been removed from the graph
// the collection has also been dropped from the database
// this may have been a bad idea
});
graph.edgeCollection(collectionName): GraphEdgeCollection
Returns a new GraphEdgeCollection instance with the given name bound to this graph.
Arguments
collectionName: string
Name of the edge collection.
Examples
var db = require('arangojs')();
// assuming the collections "edges" and "vertices" exist
var graph = db.graph('some-graph');
var collection = graph.edgeCollection('edges');
if (err) return console.error(err);
collection.name === 'edges';
// collection is a GraphEdgeCollection
async graph.addEdgeDefinition(definition): Object
Adds the given edge definition definition to the graph.
Arguments
definition: Object
For more information on edge definitions see the HTTP API for managing graphs.
Examples
var db = require('arangojs')();
// assuming the collections "edges" and "vertices" exist
var graph = db.graph('some-graph');
graph.addEdgeDefinition({
collection: 'edges',
from: ['vertices'],
to: ['vertices']
}, function (err) {
if (err) return console.error(err);
// the edge definition has been added to the graph
});
async graph.replaceEdgeDefinition(collectionName, definition): Object
Replaces the edge definition for the edge collection named collectionName with the given definition.
Arguments
collectionName: string
Name of the edge collection to replace the definition of.
definition: Object
For more information on edge definitions see the HTTP API for managing graphs.
Examples
var db = require('arangojs')();
// assuming the collections "edges", "vertices" and "more-vertices" exist
var graph = db.graph('some-graph');
graph.replaceEdgeDefinition('edges', {
collection: 'edges',
from: ['vertices'],
to: ['more-vertices']
}, function (err) {
if (err) return console.error(err);
// the edge definition has been modified
});
async graph.removeEdgeDefinition(definitionName, [dropCollection]): Object
Removes the edge definition with the given definitionName form the graph.
Arguments
definitionName: string
Name of the edge definition to remove from the graph.
dropCollection: boolean
(optional)
If set to true
, the edge collection associated with the definition will also be deleted from the database.
Examples
var db = require('arangojs')();
var graph = db.graph('some-graph');
graph.removeEdgeDefinition('edges', function (err) {
if (err) return console.error(err);
// the edge definition has been removed
});
// -- or --
graph.removeEdgeDefinition('edges', true, function (err) {
if (err) return console.error(err);
// the edge definition has been removed
// and the edge collection "edges" has been dropped
// this may have been a bad idea
});
async graph.traversal(startVertex, opts): Object
Performs a traversal starting from the given startVertex and following edges contained in any of the edge collections of this graph.
Arguments
startVertex: string
The handle of the start vertex. This can be either the _id
of a document in the graph or a document (i.e. an object with an _id
property).
opts: Object
See the HTTP API documentation for details on the additional arguments.
Please note that while opts.filter, opts.visitor, opts.init, opts.expander and opts.sort should be strings evaluating to well-formed JavaScript functions, it's not possible to pass in JavaScript functions directly because the functions need to be evaluated on the server and will be transmitted in plain text.
Examples
var db = require('arangojs')();
var graph = db.graph('some-graph');
var collection = graph.edgeCollection('edges');
if (err) return console.error(err);
collection.import([
['_key', '_from', '_to'],
['x', 'vertices/a', 'vertices/b'],
['y', 'vertices/b', 'vertices/c'],
['z', 'vertices/c', 'vertices/d']
], function (err) {
if (err) return console.error(err);
graph.traversal('vertices/a', {
direction: 'outbound',
visitor: 'result.vertices.push(vertex._key);',
init: 'result.vertices = [];'
}, function (err, result) {
if (err) return console.error(err);
result.vertices; // ['a', 'b', 'c', 'd']
});
});
});
The GraphVertexCollection API extends the Collection API (see above) with the following methods.
async graphVertexCollection.vertex(documentHandle): Object
Retrieves the vertex with the given documentHandle from the collection.
Arguments
documentHandle: string
The handle of the vertex to retrieve. This can be either the _id
or the _key
of a vertex in the collection, or a vertex (i.e. an object with an _id
or _key
property).
Examples
var graph = db.graph('some-graph');
var collection = graph.vertexCollection('vertices');
collection.vertex('some-key', function (err, doc) {
if (err) return console.error(err);
// the vertex exists
doc._key === 'some-key';
doc._id === 'vertices/some-key';
});
// -- or --
collection.vertex('vertices/some-key', function (err, doc) {
if (err) return console.error(err);
// the vertex exists
doc._key === 'some-key';
doc._id === 'vertices/some-key';
});
});
async graphVertexCollection.save(data): Object
Creates a new vertex with the given data.
Arguments
data: Object
The data of the vertex.
Examples
var db = require('arangojs')();
var graph = db.graph('some-graph');
var collection = graph.vertexCollection('vertices');
collection.save(
{some: 'data'},
function (err, doc) {
if (err) return console.error(err);
doc._key; // the document's key
doc._id === ('vertices/' + doc._key);
doc.some === 'data';
}
);
The GraphEdgeCollection API extends the Collection API (see above) with the following methods.
async graphEdgeCollection.edge(documentHandle): Object
Retrieves the edge with the given documentHandle from the collection.
Arguments
documentHandle: string
The handle of the edge to retrieve. This can be either the _id
or the _key
of an edge in the collection, or an edge (i.e. an object with an _id
or _key
property).
Examples
var graph = db.graph('some-graph');
var collection = graph.edgeCollection('edges');
collection.edge('some-key', function (err, edge) {
if (err) return console.error(err);
// the edge exists
edge._key === 'some-key';
edge._id === 'edges/some-key';
});
// -- or --
collection.edge('edges/some-key', function (err, edge) {
if (err) return console.error(err);
// the edge exists
edge._key === 'some-key';
edge._id === 'edges/some-key';
});
async graphEdgeCollection.save(data, [fromId, toId]): Object
Creates a new edge between the vertices fromId and toId with the given data.
Arguments
data: Object
The data of the new edge. If fromId and toId are not specified, the data needs to contain the properties _from and _to.
fromId: string
(optional)
The handle of the start vertex of this edge. This can be either the _id
of a document in the database, the _key
of an edge in the collection, or a document (i.e. an object with an _id
or _key
property).
toId: string
(optional)
The handle of the end vertex of this edge. This can be either the _id
of a document in the database, the _key
of an edge in the collection, or a document (i.e. an object with an _id
or _key
property).
Examples
var db = require('arangojs')();
var graph = db.graph('some-graph');
var collection = graph.edgeCollection('edges');
collection.save(
{some: 'data'},
'vertices/start-vertex',
'vertices/end-vertex',
function (err, edge) {
if (err) return console.error(err);
edge._key; // the edge's key
edge._id === ('edges/' + edge._key);
edge.some === 'data';
edge._from === 'vertices/start-vertex';
edge._to === 'vertices/end-vertex';
}
);
The Apache License, Version 2.0. For more information, see the accompanying LICENSE file.
FAQs
The official ArangoDB JavaScript driver.
The npm package arangojs receives a total of 5,897 weekly downloads. As such, arangojs popularity was classified as popular.
We found that arangojs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.