1
0
Fork 0
arangodb/Documentation/Books/Users/AqlExtending
Alan Plum 8853ede355 org/arangodb -> @arangodb 2015-12-15 15:51:44 +01:00
..
Conventions.mdpp Remove whitespaces that may irretate our parser, add checks. 2015-12-04 15:17:36 +01:00
Functions.mdpp org/arangodb -> @arangodb 2015-12-15 15:51:44 +01:00
README.mdpp Fix dangling anchors and add checker script to the make target. 2015-11-26 18:51:39 +01:00

README.mdpp

!CHAPTER Extending AQL with User Functions

AQL comes with a built-in set of functions, but it is not a
fully-featured programming language.

To add missing functionality or to simplify queries, users
may add their own functions to AQL. These functions can be written
in JavaScript, and must be registered via the API; 
see [Registering Functions](../AqlExtending/Functions.md).

In order to avoid conflicts with existing or future built-in 
function names, all user functions must be put into separate
namespaces. Invoking a user functions is then possible by referring
to the fully-qualified function name, which includes the namespace,
too; see [Conventions](../AqlExtending/Conventions.md).