1
0
Fork 0
mirror of synced 2024-09-08 21:51:58 +12:00

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 6cd4b358d2
commit f4c027c25b

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()