User/Auth context now being passed to dynamic variable request updates

This commit is contained in:
Dean 2022-11-24 10:16:05 +00:00
parent 027ff0e42f
commit 821cff392c
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,6 @@ class QueryRunner {
async execute(): Promise<any> {
let { datasource, fields, queryVerb, transformer } = this
let datasourceClone = cloneDeep(datasource)
let fieldsClone = cloneDeep(fields)
@ -181,6 +180,7 @@ class QueryRunner {
parameters,
transformer: query.transformer,
queryId,
ctx: this.ctx,
},
{ noRecursiveQuery: true }
).execute()