Document functions
AQL provides below listed functions to operate on objects / document values. Also see object access for additional language constructs.
ATTRIBUTES()
ATTRIBUTES(document, removeSystemAttrs, sort) → strArray
Return the top-level attribute keys of the document
as an array.
Optionally omit system attributes and sort the array.
- document (object): an arbitrary document / object
- removeSystemAttrs (bool, optional): whether all system attributes
(starting with an underscore, such as
_key
and_id
) shall be omitted in the result. The default isfalse
. - sort (bool, optional): optionally sort the resulting array alphabetically.
The default is
false
and will return the attribute names in any order. - returns strArray (array): the attribute keys of the input
document
as an array of strings
Examples
Return the attribute keys of an object:
Return the attribute keys of an object but omit system attributes:
RETURN ATTRIBUTES( { "foo": "bar", "_key": "123", "_custom": "yes" }, true )
[
[
"foo"
]
]
Return the attribute keys of an object in alphabetic order:
Complex example to count how often every top-level attribute key occurs in the documents of a collection (expensive on large collections):
LET attributesPerDocument = (
FOR doc IN collection RETURN ATTRIBUTES(doc, true)
)
FOR attributeArray IN attributesPerDocument
FOR attribute IN attributeArray
COLLECT attr = attribute WITH COUNT INTO count
SORT count DESC
RETURN {attr, count}
COUNT()
This is an alias for LENGTH().
HAS()
HAS(document, attributeName) → isPresent
Test whether an attribute is present in the provided document.
- document (object): an arbitrary document / object
- attributeName (string): the attribute key to test for
- returns isPresent (bool):
true
ifdocument
has an attribute namedattributeName
, andfalse
otherwise. Also returnstrue
if the attribute has a falsy value (null
,0
,false
, empty string""
)
The function checks if the specified attribute exists, regardless of its value.
Other ways of testing for the existence of an attribute may behave differently
if the attribute has a falsy value or is not present (implicitly null
on
object access):
!!{ name: "" }.name // false
HAS( { name: "" }, "name") // true
{ name: null }.name == null // true
{ }.name == null // true
HAS( { name: null }, "name" ) // true
HAS( { }, "name" ) // false
Note that HAS()
cannot utilize indexes. If it is not necessary to distinguish
between explicit and implicit null values in your query, you may use an equality
comparison to test for null and create a non-sparse index on the attribute you
want to test against:
FILTER !HAS(doc, "name") // cannot use indexes
FILTER IS_NULL(doc, "name") // cannot use indexes
FILTER doc.name == null // can utilize non-sparse indexes
Examples
Check whether the example object has a name
attribute key:
RETURN HAS( { name: "Jane" }, "name" )
[
true
]
Check whether the example object has an age
attribute key:
RETURN HAS( { name: "Jane" }, "age" )
[
false
]
Falsy attribute values like null
still count as the attribute being present:
RETURN HAS( { name: null }, "name" )
[
true
]
IS_SAME_COLLECTION()
IS_SAME_COLLECTION(collectionName, documentHandle) → isSame
Test whether the documentHandle
has collectionName
as collection.
The function does not validate whether the collection actually contains the specified document. It only compares the name of the specified collection with the collection name part of the specified document.
- collectionName (string): the name of a collection as string
- documentHandle (string|object): a document identifier string
(e.g.
_users/1234
) or an object with an_id
attribute (e.g. a document from a collection). - returns isSame (bool):
true
if the collection ofdocumentHandle
is the same ascollectionName
, orfalse
if it is not. IfdocumentHandle
is an object without an_id
attribute or anything other than a string or object, thennull
is returned and a warning is raised.
Examples
KEEP()
KEEP(document, attributeName1, attributeName2, ... attributeNameN) → doc
Keep only the attributes attributeName
to attributeNameN
of document
.
All other attributes will be removed from the result.
To do the opposite, see UNSET().
- document (object): a document / object
- attributeNames (string, repeatable): an arbitrary number of attribute names as multiple arguments
- returns doc (object): a document with only the specified attributes at the top-level
Examples
Keep the top-level foo
attribute, preserving its nested object:
Keep the top-level bar
attribute, which the example object does not have,
resulting in an empty object:
LET doc = { foo: { bar: { foo: 1, baz: 2 }, baz: 3 }, baz: 4 }
RETURN KEEP(doc, "bar")
[ {} ]
Keep the top-level baz
attribute:
LET doc = { foo: { bar: { foo: 1, baz: 2 }, baz: 3 }, baz: 4 }
RETURN KEEP(doc, "baz")
[
{
"baz": 4
}
]
Keep multiple top-level attributes (foo
and baz
):
KEEP(document, attributeNameArray) → doc
- document (object): a document / object
- attributeNameArray (array): an array of attribute names as strings
- returns doc (object): a document with only the specified attributes at the top-level
Examples
Keep multiple top-level attributes (foo
and baz
), by passing an array of the
attribute keys instead of individual arguments:
KEEP_RECURSIVE()
KEEP_RECURSIVE(document, attributeName1, attributeName2, ... attributeNameN) → doc
Recursively preserve the attributes attributeName1
to attributeNameN
from
document
and its sub-documents. All other attributes will be removed.
To do the opposite, use UNSET_RECURSIVE().
- document (object): a document / object
- attributeNames (string, repeatable): an arbitrary number of attribute names as multiple arguments (at least 1)
- returns doc (object):
document
with only the specified attributes at all levels (top-level as well as nested objects)
Examples
Recursively preserve foo
attributes, but not nested attributes that have
parents with other names:
LET doc = { foo: { bar: { foo: 1, baz: 2 }, baz: 3 }, baz: 4 }
RETURN KEEP_RECURSIVE(doc, "foo")
[
{
"foo": {}
}
]
Recursively preserve bar
attributes, but there is none at the top-level, leading
to an empty object:
LET doc = { foo: { bar: { foo: 1, baz: 2 }, baz: 3 }, baz: 4 }
RETURN KEEP_RECURSIVE(doc, "bar")
[ {} ]
Recursively preserve baz
attributes, but not nested attributes that have
parents with other names:
LET doc = { foo: { bar: { foo: 1, baz: 2 }, baz: 3 }, baz: 4 }
RETURN KEEP_RECURSIVE(doc, "baz")
[
{
"baz": 4
}
]
Recursively preserve multiple attributes (foo
and bar
):
Recursively preserve multiple attributes (foo
and baz
), but not nested
attributes that have parents with other names:
Recursively preserve multiple attributes (foo
, bar
, and baz
), preserving all
attributes of the example object:
KEEP_RECURSIVE(document, attributeNameArray) → doc
- document (object): a document / object
- attributeNameArray (array): an array of attribute names as strings
- returns doc (object): document with only the specified attributes at all levels (top-level as well as nested objects)
Examples
Recursively preserve multiple attributes (foo
and baz
), by passing an array of the
attribute keys instead of individual arguments:
LENGTH()
LENGTH(doc) → attrCount
Determine the number of attribute keys of an object / document.
LENGTH()
can also determine the number of elements in an array,
the amount of documents in a collection and
the character length of a string.
- doc (object): a document / object
- returns attrCount (number): the number of attribute keys in
doc
, regardless of their values
Examples
RETURN LENGTH({ name: "Emma", age: 36, phone: { mobile: "..." } })
[
3
]
MATCHES()
MATCHES(document, examples, returnIndex) → match
Compare the given document
against each example document provided. The comparisons
will be started with the first example. All attributes of the example will be compared
against the attributes of document
. If all attributes match, the comparison stops
and the result is returned. If there is a mismatch, the function will continue the
comparison with the next example until there are no more examples left.
The examples
can be an array of 1..n example documents or a single document,
with any number of attributes each.
An attribute value of null
will match documents with an explicit attribute value
of null
as well as documents with this attribute missing (implicitly null
).
Only HAS() can differentiate between an attribute being absent and having
a stored null
value.
An empty object {}
will match all documents. Be careful not to ask for all
documents accidentally. For example, the arangojs driver
skips attributes with a value of undefined
, turning {attr: undefined}
into {}
.
MATCHES()
cannot utilize indexes. You may use plain FILTER
conditions instead to potentially benefit from existing indexes:
FOR doc IN coll FILTER (cond1 AND cond2 AND cond3) OR (cond4 AND cond5) ...
- document (object): document to determine whether it matches any example
- examples (object|array): a single document, or an array of documents to compare against. Specifying an empty array is not allowed.
- returnIndex (bool): by setting this flag to
true
, the index of the example that matched will be returned (starting at offset 0), or-1
if there was no match. The default isfalse
and makes the function return a boolean. - returns match (bool|number): if
document
matches one of the examples,true
is returned, otherwisefalse
. A number is returned instead ifreturnIndex
is enabled.
Examples
Check whether all attributes of the example are present in the document:
LET doc = {
name: "jane",
age: 27,
active: true
}
RETURN MATCHES(doc, { age: 27, active: true } )
[
true
]
Check whether one of the examples matches the document and return the index of the matching example:
RETURN MATCHES(
{ "test": 1 },
[
{ "test": 1, "foo": "bar" },
{ "foo": 1 },
{ "test": 1 }
],
true)
[
2
]
MERGE()
MERGE(document1, document2, ... documentN) → mergedDocument
Merge the documents document1
to documentN
into a single document.
If document attribute keys are ambiguous, the merged result will contain the values
of the documents contained later in the argument list.
Note that merging will only be done for top-level attributes. If you wish to merge sub-attributes, use MERGE_RECURSIVE() instead.
- documents (object, repeatable): an arbitrary number of documents as multiple arguments (at least 2)
- returns mergedDocument (object): a combined document
Examples
Two documents with distinct attribute names can easily be merged into one:
When merging documents with identical attribute names, the attribute values of the latter documents will be used in the end result:
MERGE(docArray) → mergedDocument
MERGE()
also accepts a single array parameter. This variant allows combining the
attributes of multiple objects in an array into a single object.
- docArray (array): an array of documents, as sole argument
- returns mergedDocument (object): a combined document
Examples
MERGE_RECURSIVE()
MERGE_RECURSIVE(document1, document2, ... documentN) → mergedDocument
Recursively merge the documents document1
to documentN
into a single document.
If document attribute keys overlap, the merged result contains the values
of the documents contained later in the argument list.
- documents (object, repeatable): an arbitrary number of documents as multiple arguments (at least 1)
- returns mergedDocument (object): a combined document
Examples
Merge two documents with the same top-level attribute, combining the name
,
age
, and livesIn
sub-attributes:
MERGE_RECURSIVE(documents) → mergedDocument
Recursively merge the list of documents into a single document. If document attribute keys overlap, the merged result contains the values of the documents specified later in the list.
- documents (array): an array with an arbitrary number of objects
- returns mergedDocument (object): a combined document
Examples
Merge a list of two documents with the same top-level attribute, combining the
name
and age
sub-attributes but overwriting the city
value in the
livesIn
sub-attribute:
PARSE_IDENTIFIER()
PARSE_IDENTIFIER(documentHandle) → parts
Parse a document ID and return its individual parts as separate attributes.
This function can be used to easily determine the collection name and key of a given document.
- documentHandle (string|object): a document identifier string (e.g.
_users/1234
) or a regular document from a collection. Passing either a non-string or a non-document or a document without an_id
attribute will result in an error. - returns parts (object): an object with the attributes collection and key
Examples
Parse a document identifier string:
Parse the document identifier string of a document (_id
attribute):
TRANSLATE()
TRANSLATE(value, lookupDocument, defaultValue) → mappedValue
Look up the specified value
in the lookupDocument
. If value
is a key in
lookupDocument
, then value
will be replaced with the lookup value found.
If value
is not present in lookupDocument
, then defaultValue
will be returned
if specified. If no defaultValue
is specified, value
will be returned unchanged.
- value (string): the value to encode according to the mapping
- lookupDocument (object): a key/value mapping as document
- defaultValue (any, optional): a fallback value in case
value
is not found - returns mappedValue (any): the encoded value, or the unaltered
value
ordefaultValue
(if supplied) in case it could not be mapped
Examples
Translate a country code to a country name:
RETURN TRANSLATE("FR", { US: "United States", UK: "United Kingdom", FR: "France" } )
[
"France"
]
The unaltered input value is returned if no match is found in the mapping:
RETURN TRANSLATE(42, { foo: "bar", bar: "baz" } )
[
42
]
If you specify a fallback value and no match is found in the mapping, then the fallback value returned instead of the input value:
RETURN TRANSLATE(42, { foo: "bar", bar: "baz" }, "not found!")
[
"not found!"
]
Note that any non-string input value is implicitly cast to a string before the lookup:
RETURN TRANSLATE(42, { "42": true } )
[
true
]
UNSET()
UNSET(document, attributeName1, attributeName2, ... attributeNameN) → doc
Remove the attributes attributeName1
to attributeNameN
from document
.
All other attributes will be preserved.
To do the opposite, see KEEP().
- document (object): a document / object
- attributeNames (string, repeatable): an arbitrary number of attribute names as multiple arguments (at least 1)
- returns doc (object):
document
without the specified attributes at the top-level
Examples
Remove the top-level foo
attribute, including its nested objects:
LET doc = { foo: { bar: { foo: 1, baz: 2 }, baz: 3 }, baz: 4 }
RETURN UNSET(doc, "foo")
[
{
"baz": 4
}
]
Remove the top-level bar
attribute, which the example object does not have,
resulting in an unchanged object:
Remove the top-level baz
attribute:
Remove multiple top-level attributes (foo
and baz
), resulting in an empty
object in this example:
LET doc = { foo: { bar: { foo: 1, baz: 2 }, baz: 3 }, baz: 4 }
RETURN UNSET(doc, "foo", "baz")
[ {} ]
UNSET(document, attributeNameArray) → doc
- document (object): a document / object
- attributeNameArray (array): an array of attribute names as strings
- returns doc (object): document without the specified attributes at the top-level
Examples
Remove multiple top-level attributes (foo
and baz
), by passing an array of the
attribute keys instead of individual arguments:
LET doc = { foo: { bar: { foo: 1, baz: 2 }, baz: 3 }, baz: 4 }
RETURN UNSET(doc, ["foo", "bar"])
[
{
"baz": 4
}
]
UNSET_RECURSIVE()
UNSET_RECURSIVE(document, attributeName1, attributeName2, ... attributeNameN) → doc
Recursively remove the attributes attributeName1
to attributeNameN
from
document
and its sub-documents. All other attributes will be preserved.
To do the opposite, use KEEP_RECURSIVE().
- document (object): a document / object
- attributeNames (string, repeatable): an arbitrary number of attribute names as multiple arguments (at least 1)
- returns doc (object):
document
without the specified attributes at all levels (top-level as well as nested objects)
Examples
Recursively remove foo
attributes:
LET doc = { foo: { bar: { foo: 1, baz: 2 }, baz: 3 }, baz: 4 }
RETURN UNSET_RECURSIVE(doc, "foo")
[
{
"baz": 4
}
]
Recursively remove bar
attributes:
Recursively remove baz
attributes:
Recursively remove multiple attributes (foo
and bar
):
LET doc = { foo: { bar: { foo: 1, baz: 2 }, baz: 3 }, baz: 4 }
RETURN UNSET_RECURSIVE(doc, "foo", "bar")
[
{
"baz": 4
}
]
Recursively remove multiple attributes (foo
and baz
), removing all
attributes of the example object:
LET doc = { foo: { bar: { foo: 1, baz: 2 }, baz: 3 }, baz: 4 }
RETURN UNSET_RECURSIVE(doc, "foo", "baz")
[ {} ]
Recursively remove multiple attributes (foo
, bar
, and baz
), removing all
attributes of the example object:
LET doc = { foo: { bar: { foo: 1, baz: 2 }, baz: 3 }, baz: 4 }
RETURN UNSET_RECURSIVE(doc, "foo", "bar", "baz")
[ {} ]
UNSET_RECURSIVE(document, attributeNameArray) → doc
- document (object): a document / object
- attributeNameArray (array): an array of attribute names as strings
- returns doc (object): document without the specified attributes at all levels (top-level as well as nested objects)
Examples
Recursively remove baz
attributes, by passing an array with the attribute key:
VALUE()
VALUE(document, path) → value
Return the specified attribute value of the document
.
- document (object): a document / object
- path (array): an array of strings and numbers that describes the attribute path. You can select object keys with strings and array elements with numbers.
- returns value (any): the selected value of
document
Examples
Dynamically get the inner string, like obj.foo.bar
would:
LET obj = { foo: { bar: "baz" } }
RETURN VALUE(obj, ["foo", "bar"])
[
"baz"
]
Dynamically get the inner object of the second array element of a top-level
attribute, like obj.foo[1].bar
would:
LET obj = { foo: [ { bar: "baz" }, { bar: { inner: true } } ] }
RETURN VALUE(obj, ["foo", 1, "bar"])
[
{
"inner": true
}
]
VALUES()
VALUES(document, removeSystemAttrs) → anyArray
Return the attribute values of the document
as an array. Optionally omit
system attributes.
- document (object): a document / object
- removeSystemAttrs (bool, optional): if set to
true
, then all system attributes (starting with an underscore, such as_id
,_key
etc.) are removed from the result - returns anyArray (array): the values of
document
returned in any order
Examples
Get the attribute values of an object:
Get the attribute values of an object, omitting system attributes:
ZIP()
ZIP(keys, values) → doc
Return a document object assembled from the separate parameters keys
and values
.
keys
and values
must be arrays and have the same length.
- keys (array): an array of strings, to be used as attribute names in the result
- values (array): an array with elements of arbitrary types, to be used as attribute values
- returns doc (object): a document with the keys and values assembled
Examples