Our expression language needs a `list` function that creates a list from its arguments. Example: ```json ["list", 1, 2, 3] ``` returns ```json [1, 2, 3] ``` In addition, list should be a valid return type of other expressions. ## Acceptance criteria - [x] There is a `list` function that returns a list in both frontend and backend - [x] Source functions (like `dataModel`) that refer to a list return that list - [x] Existing functions treat lists the same way they treat other invalid values - [x] The JSON Schema used by the expression editor in Studio is updated
Our expression language needs a
listfunction that creates a list from its arguments.Example:
returns
In addition, list should be a valid return type of other expressions.
Acceptance criteria
listfunction that returns a list in both frontend and backenddataModel) that refer to a list return that list