1
0
Fork 0
arangodb/Documentation/Books/Users/AqlExtending
Jan Steemann b0fa21b0ce updated conventions documentation for AQL functions 2015-01-16 12:56:02 +01:00
..
Conventions.mdpp updated conventions documentation for AQL functions 2015-01-16 12:56:02 +01:00
Functions.mdpp Changed some (sub)chapters and fixed spelling errors 2014-06-27 11:02:10 +02:00
README.mdpp Fixed some further language bugs in the doc. 2014-08-05 09:21:19 +02: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.html).

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.html).