Supports any JS script using ECMAScript 2020 syntax. The script should have a return clause returning either a value or null / undefined. The script has access to a row object that represent a row in the dataset and have the column names as keys. Lists are supported both as inputs and outputs. It’s important to correctly manage null values by checking for null (e.g. if (row.col != null) { ... }) or using the JS optional chaining operator (?).

script
string
required

The javascript code to execute.

type
string
required

Output column type. Select the desired type using a shortened yet fully specified name.

Values must be one of the following:

boolean category date number text url list[number] list[category] list[url]