Fixing #3228 - allowing access to parameters in the transformer.

This commit is contained in:
mike12345567 2022-01-11 11:17:35 +00:00
parent 495399ad0a
commit e2daf948c1
1 changed files with 4 additions and 1 deletions

View File

@ -46,7 +46,10 @@ class QueryRunner {
// transform as required // transform as required
if (transformer) { if (transformer) {
const runner = new ScriptRunner(transformer, { data: rows }) const runner = new ScriptRunner(transformer, {
data: rows,
params: parameters,
})
rows = runner.execute() rows = runner.execute()
} }