From 489a12d9ff39339ab1b8fa4715b5e416f50d90d7 Mon Sep 17 00:00:00 2001 From: Michael Kret <88898367+michael-radency@users.noreply.github.com> Date: Fri, 6 Oct 2023 14:16:55 +0300 Subject: [PATCH] fix(Google BigQuery Node): Location default to jobReference (#7354) Github issue / Community forum post (link here to close automatically): --- .../v2/actions/database/executeQuery.operation.ts | 9 +++++---- .../nodes/Google/BigQuery/v2/helpers/interfaces.ts | 2 +- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/packages/nodes-base/nodes/Google/BigQuery/v2/actions/database/executeQuery.operation.ts b/packages/nodes-base/nodes/Google/BigQuery/v2/actions/database/executeQuery.operation.ts index c50511cc9978c..40bdd7ad7960d 100644 --- a/packages/nodes-base/nodes/Google/BigQuery/v2/actions/database/executeQuery.operation.ts +++ b/packages/nodes-base/nodes/Google/BigQuery/v2/actions/database/executeQuery.operation.ts @@ -7,7 +7,7 @@ import type { import { NodeOperationError, sleep } from 'n8n-workflow'; import { getResolvables, updateDisplayOptions } from '@utils/utilities'; -import type { JobInsertResponse } from '../../helpers/interfaces'; +import type { ResponseWithJobReference } from '../../helpers/interfaces'; import { prepareOutput } from '../../helpers/utils'; import { googleApiRequest } from '../../transport'; @@ -205,7 +205,7 @@ export async function execute(this: IExecuteFunctions): Promise