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 - [ ] There is a `list` function that returns a list - [ ] Source functions (like `dataModel`) that refer to a list return that list - [ ] Existing functions treat lists the same way they treat other invalid values - [ ] 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 listdataModel) that refer to a list return that list