XVal usage

Practical usage of the XVal language

Data transformation

XVal can be passed in as the formula parameter to the Transform macro.

The Transform macro below expects a person object as an input parameter and will then generate a JSON object containing properties for the first name and the last name.

Transform(formula="\\person -> { Firstname: person.first, Lastname: person.last }")

Last updated

Was this helpful?