1
0
Fork 0
arangodb/Documentation/Books/AQL/Functions
Jan 14720b85be
add AQL functions CRC32 and FNV64 (#8600)
2019-03-28 03:06:33 +01:00
..
Array.md Doc - Add cross-refs & better AQL function descriptions (#8242) 2019-03-13 08:49:12 +01:00
Date.md
Document.md Doc - Add cross-refs & better AQL function descriptions (#8242) 2019-03-13 08:49:12 +01:00
Fulltext.md
Geo.md Doc - Fix/improve graph traversal/background indexing pages, console.history and examples/options (#8336) 2019-03-11 14:06:28 +01:00
Miscellaneous.md add AQL functions CRC32 and FNV64 (#8600) 2019-03-28 03:06:33 +01:00
Numeric.md Doc - Add cross-refs & better AQL function descriptions (#8242) 2019-03-13 08:49:12 +01:00
README.md
String.md add AQL functions CRC32 and FNV64 (#8600) 2019-03-28 03:06:33 +01:00
TypeCast.md Doc - Add cross-refs & better AQL function descriptions (#8242) 2019-03-13 08:49:12 +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.