Expressions
Expressions can be used to access variables and calculate values dynamically.
The following attributes of BPMN elements require an expression:
- Sequence flow on an exclusive gateway: condition
- Message catch event / receive task: correlation key
- Multi-instance activity: input collection, output element
- Input/output variable mappings: source
Additionally, the following attributes of BPMN elements can define an expression optionally instead of a static value:
- Timer catch event: timer definition
- Message catch event / receive task: message name
- Service task: job type, job retries
- Call activity: process id
Expressions vs. static valuesβ
Some attributes of BPMN elements, like the timer definition of a timer catch event, can be defined either:
- as an expression (e.g.
= remaingTime
), or - as a static value (e.g.
PT2H
).
Expressions always start with an equal sign (e.g. = order.amount > 100
). The text behind the equal sign is the actual expression (e.g. order.amount > 100
checks whether the amount of the order is greater than 100).
If the element does not start with the prefix then it is used as a static value. A static value is used either as a string (e.g. job type) or as a number (e.g. job retries). A string value must not be enclosed in quotes.
Note that an expression can also define a static value by using literals (e.g. = "foo"
, = 21
, = true
, = [1,2,3]
, = {x: 22}
, etc.).
The expression languageβ
An expression is written in FEEL (Friendly Enough Expression Language). FEEL is part of the OMG's DMN (Decision Model and Notation) specification. It is designed to have the following properties:
- Side-effect free
- Simple data model with JSON-like object types: numbers, dates, strings, lists, and contexts
- Simple syntax designed for business professionals and developers
- Three-valued logic (true, false, null)
Camunda Cloud integrates the FEEL Scala engine to evaluate FEEL expressions. The following sections cover common use cases in Zeebe. A complete list of supported expressions can be found in FEEL Expressions.
Access variablesβ
A variable can be accessed by its name.
owner
// "Paul"
totalPrice
// 21.2
items
// ["item-1", "item-2", "item-3"]
If a variable is a JSON document/object then it is handled as a FEEL context. A property of the context (aka nested variable property) can be accessed by .
(a dot) and the property name.
order.id
// "order-123"
order.customer.name
// "Paul"
Boolean expressionsβ
Values can be compared using the following operators:
Operator | Description | Example |
---|---|---|
= (only one equal sign) | equal to | owner = "Paul" |
!= | not equal to | owner != "Paul" |
< | less than | totalPrice < 25 |
<= | less than or equal to | totalPrice <= 25 |
> | greater than | totalPrice > 25 |
>= | greater than or equal to | totalPrice >= 25 |
between [X] and [Y] | same as (v >= [X] and v <= [Y]]) | totalPrice between 10 and 25 |
Multiple boolean values can be combined as disjunction (and
) or conjunction (or
).
orderCount >= 5 and orderCount < 15
orderCount > 15 or totalPrice > 50
Null Checksβ
If a variable or a nested property can be null
then it can be compared to the null
value. Comparing null
to a value different from null
results in false
.
order = null
// true - if "order" is null or doesn't exist
order.id = null
// true - if "order" is null, "order" doesn't exist,
// "id" is null, or "order" has no property "id"
In addition to the comparison with null
, the built-in function is defined()
can be used to differentiate between a value that is null
and a value that doesnβt exist.
is defined(order)
// true - if "order" has any value or is null
is defined(order.id)
// false - if "order" doesn't exist or it has no property "id"
String Expressionsβ
A string value must be enclosed in double quotes. Multiple string values can be concatenated using the +
operator.
"foo" + "bar"
// "foobar"
Any value can be transformed into a string value using the string()
function.
"order-" + string(orderId)
// "order-123"
More functions for string values are available as built-in String functions (e.g. contains, matches, etc.).
Temporal Expressionsβ
The current date and date-time can be accessed using the built-in functions today()
and now()
. In order to store the current date or date-time in a variable, it must be converted to a string using the built-in function string()
.
now()
// date and time("2020-04-06T15:30:00@UTC")
today()
// date("2020-04-06")
string(today())
// "2020-04-06"
The following operators can be applied on temporal values:
Temporal Type | Examples | Operators |
---|---|---|
date | date("2020-04-06") | |
time | time("15:30:00"), time("15:30:00+02:00"), time("15:30:00@Europe/Berlin") | |
date-time | date and time("2020-04-06T15:30:00"), date and time("2020-04-06T15:30:00+02:00"), date and time("2020-04-06T15:30:00@UTC") | |
duration | duration("P12H"), duration("P4Y") | |
cycle | cycle(3, duration("PT1H")), cycle(duration("P7D")) |
A temporal value can be compared in a boolean expression with another temporal value of the same type.
The cycle
type is different from the other temporal types because it is not supported in the FEEL type system. Instead, it is defined as a function that returns the definition of the cycle as a string in the ISO 8601 format of a recurring time interval. The function expects two arguments: the number of repetitions and the recurring interval as duration. If the first argument is null
or not passed in then the interval is unbounded (i.e. infinitely repeated).
cycle(3, duration("PT1H"))
// "R3/PT1H"
cycle(duration("P7D"))
// "R/P7D"
List Expressionsβ
An element of a list can be accessed by its index. The index starts at 1
with the first element (not at 0
). A negative index starts at the end by -1
. If the index is out of the range of the list then null
is returned instead.
["a","b","c"][1]
// "a"
["a","b","c"][2]
// "b"
["a","b","c"][-1]
// "c"
A list value can be filtered using a boolean expression. The result is a list of elements that fulfill the condition. The current element in the condition is assigned to the variable item
.
[1,2,3,4][item > 2]
// [3,4]
The operators every
and some
can be used to test if all elements or at least one element of a list fulfill a given condition.
every x in [1,2,3] satisfies x >= 2
// false
some x in [1,2,3] satisfies x > 2
// true
Invoke Functionsβ
A function can be invoked by its name followed by the arguments. The arguments can be assigned to the function parameters either by their position or by defining the parameter names.
floor(1.5)
// 1
count(["a","b","c"])
// 3
append(["a","b"], "c")
// ["a","b","c"]
contains(string: "foobar", match: "foo")
// true
FEEL defines several built-in functions:
- Conversion Functions
- Boolean Functions
- String Functions
- Numeric Functions
- List Functions
- Context Functions
- Temporal Functions