1
0
Fork 0
arangodb/Documentation/Books/AQL/Functions
jsteemann 81af9a05ba updated documentation 2018-06-26 23:03:26 +02:00
..
Array.md updated documentation 2018-06-26 23:03:26 +02:00
Date.md Feature/aql date trunc 2 (#5295) 2018-05-16 17:33:27 +02:00
Document.md Doc - Adds toc plugin (#4577) 2018-02-13 19:04:32 +01:00
Fulltext.md Doc - Adds toc plugin (#4577) 2018-02-13 19:04:32 +01:00
Geo.md Adding MultiPolygon support, fixing some outstanding bugs (#5613) 2018-06-22 10:03:27 +02:00
Miscellaneous.md fixed documentation. thanks @konsultaner 2018-02-27 08:38:32 +01:00
Numeric.md updated documentation 2018-06-26 23:03:26 +02:00
README.md Doc - Adds toc plugin (#4577) 2018-02-13 19:04:32 +01:00
String.md Feature/cpp aql reverse (#4911) 2018-03-23 09:54:37 +01:00
TypeCast.md Doc - Adds toc plugin (#4577) 2018-02-13 19:04:32 +01:00

README.md

Functions

AQL supports functions to allow more complex computations. Functions can be called at any query position where an expression is allowed. The general function call syntax is:

FUNCTIONNAME(arguments)

where FUNCTIONNAME is the name of the function to be called, and arguments is a comma-separated list of function arguments. If a function does not need any arguments, the argument list can be left empty. However, even if the argument list is empty the parentheses around it are still mandatory to make function calls distinguishable from variable names.

Some example function calls:

HAS(user, "name")
LENGTH(friends)
COLLECTIONS()

In contrast to collection and variable names, function names are case-insensitive, i.e. LENGTH(foo) and length(foo) are equivalent.

Extending AQL

It is possible to extend AQL with user-defined functions. These functions need to be written in JavaScript, and have to be registered before they can be used in a query. Please refer to Extending AQL for more details.