This commit is contained in:
Rory Powell 2023-07-20 11:21:34 +01:00
parent b60794d73a
commit 76f61cfd3a
1 changed files with 6 additions and 3 deletions

View File

@ -246,9 +246,12 @@ async function execute(
}
const runFn = () => Runner.run(inputs)
const { rows, pagination, extra, info } = await quotas.addQuery<any>(runFn, {
datasourceId: datasource._id,
})
const { rows, pagination, extra, info } = await quotas.addQuery<any>(
runFn,
{
datasourceId: datasource._id,
}
)
// remove the raw from execution incase transformer being used to hide data
if (extra?.raw) {
delete extra.raw