1
0
Fork 0
arangodb/Documentation/Books/AQL/Extending
Simran Brucherseifer 2dc99fd231 Documentation improvements 2016-07-11 19:21:00 +02:00
..
Conventions.mdpp Documentation corrections (mostly AQL) 2016-05-24 18:46:02 +02:00
Functions.mdpp Documentation improvements 2016-07-11 19:21:00 +02:00
README.mdpp Update links in AQL docs, some reformatting 2016-05-18 22:39:05 +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 in the selected database. 
These functions can be written in JavaScript, and must be 
registered via the API; see [Registering Functions](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](Conventions.md).