We could add a block between the source and target section of a query to define reusable variables. Example: ``` from Person p let { fullName := p.firstName + " " + p.lastName } create { name := fullName id := fullName.toUpperCase.replaceAll(" ", "") } ```
We could add a block between the source and target section of a query to define reusable variables. Example: