Computed Values
Introduced in: v3.10.0
You can configure collections to generate document attributes when documents are created or modified, using an AQL expression
If you want to add default values to new documents, maintain auxiliary attributes for search queries, or similar, you can set these attributes manually in every operation that inserts or modifies documents. However, it is more convenient and reliable to let the database system take care of it.
The computed values feature lets you define expressions on the collection level that run on inserts, modifications, or both. You can access the data of the current document to compute new values using a subset of AQL. The result of each expression becomes the value of a top-level attribute. These attributes are stored like any other attribute, which means that you may use them in indexes, but also that the schema validation is applied if you use one.
Possible use cases are to add timestamps of the creation or last modification to every document, to add default attributes, or to automatically process attributes for indexing purposes. For example, you can combine multiple attributes into one, filter out array elements, and convert text to lowercase characters, to then index the new attribute and use it to perform case-insensitive searches.
Using Computed Values
Computed values are defined per collection using the computedValues
property,
either when creating the collection or by modifying the collection later on.
If you add or modify computed value definitions at a later point, then they only
affect subsequent write operations. Existing documents remain in their state.
Computed value definitions are included in dumps, and the attributes they added, too, but no expressions are executed when restoring dumps. The collections and documents are restored as they are in the dump and no attributes are recalculated.
JavaScript API
The computedValues
collection property accepts an array of objects.
db._create(<collection-name>, { computedValues: [ { … }, … ] })
db.<collection-name>.properties({ computedValues: [ { … }, … ] })
Each object represents a computed value and can have the following attributes:
-
name
(string, required): The name of the target attribute. Can only be a top-level attribute, but you may return a nested object. Cannot be_key
,_id
,_rev
,_from
,_to
, or a shard key attribute. -
expression
(string, required): An AQLRETURN
operation with an expression that computes the desired value. See Computed Value Expressions for details. -
overwrite
(boolean, required): Whether the computed value shall take precedence over a user-provided or existing attribute. -
computeOn
(array, optional): An array of strings to define on which write operations the value shall be computed. The possible values are"insert"
,"update"
, and"replace"
. The default is["insert", "update", "replace"]
. -
keepNull
(boolean, optional): Whether the target attribute shall be set if the expression evaluates tonull
. You can set the option tofalse
to not set (or unset) the target attribute if the expression returnsnull
. The default istrue
. -
failOnWarning
(boolean, optional): Whether to let the write operation fail if the expression produces a warning. The default isfalse
.
HTTP API
See the computedValues
collection property in the HTTP API documentation:
Computed Value Expressions
You can use a subset of AQL for computed values, namely a single
RETURN
operation with an expression that
computes the value.
You can access the document data via the @doc
bind variable. It contains the
data as it will be stored, including the _key
, _id
, and _rev
system attributes. On inserts, you get the user-provided values (plus the
system attributes), and on modifications, you get the updated or replaced
document to work with, including the user-provided values.
Computed value expressions have the following properties:
-
The expression must start with a
RETURN
operation and cannot contain any other operations. NoFOR
loops,LET
statements, and subqueries are allowed in the expression.FOR
loops can be substituted using the array expansion operator[*]
, for example, with an inline expressions like the following:RETURN @doc.values[* FILTER CURRENT > 42 RETURN CURRENT * 2]
-
You cannot access any stored data other than the current document via the
@doc
bind parameter. AQL functions that read from the database system cannot be used in the expression (e.g.DOCUMENT()
,PREGEL_RESULT()
,COLLECTION_COUNT()
). -
You cannot access the result of another computed value that is generated on the same
computeOn
event.For example, two computed values that are generated on
insert
cannot see the result of the other. Referencing the attributes results in an implicitnull
value. Computed values that are generated onupdate
orreplace
can see the results of the previousinsert
computations, however. They cannot see the new values of otherupdate
andreplace
computations, regardless of the order of the computed value definitions in thecomputedValues
property. -
You can use AQL functions in the expression but only those that can be executed on DB-Servers, regardless of your deployment type. The following functions cannot be used in the expression:
CALL()
APPLY()
DOCUMENT()
V8()
SCHEMA_GET()
SCHEMA_VALIDATE()
VERSION()
COLLECTIONS()
CURRENT_USER()
CURRENT_DATABASE()
COLLECTION_COUNT()
NEAR()
WITHIN()
WITHIN_RECTANGLE()
FULLTEXT()
- User-defined functions (UDFs)
Expressions that do not meet the requirements or that are syntactically invalid are rejected immediately, when setting or modifying the computed value definitions of a collection.
Examples
Add an attribute with the creation timestamp to new documents:
Add an attribute with the date and time of the last modification, only taking update and replace operations into (not inserts), and allowing to manually set this value instead of using the computed value:
Compute an attribute from two arrays, filtering one of the lists, and calculating new values to implement a case-insensitive search using a persistent array index:
Set keepNull
to false
and let an expression return null
to not set or
unset the target attribute. If you set overwrite
to false
at the same time,
then the target attribute is not actively unset:
Add a computed value as a sub-attribute to documents. This is not possible
directly because the target attribute needs to be a top-level attribute, but the
AQL expression can merge a nested object with the top-level attribute to achieve
this. The expression checks whether the attributes it wants to calculate a new
value from exist and are strings. If the preconditions are not met, then it
returns the original name
attribute: