2023-01-27 03:22:44 -08:00
|
|
|
import type {
|
2023-03-09 09:13:15 -08:00
|
|
|
IExecuteFunctions,
|
2022-09-01 05:29:15 -07:00
|
|
|
ICredentialDataDecryptedObject,
|
|
|
|
ICredentialsDecrypted,
|
|
|
|
ICredentialTestFunctions,
|
2020-07-08 01:00:13 -07:00
|
|
|
IDataObject,
|
2022-09-01 05:29:15 -07:00
|
|
|
INodeCredentialTestResult,
|
2020-07-08 01:00:13 -07:00
|
|
|
INodeExecutionData,
|
|
|
|
INodeType,
|
|
|
|
INodeTypeDescription,
|
|
|
|
} from 'n8n-workflow';
|
2023-01-27 03:22:44 -08:00
|
|
|
import { NodeOperationError } from 'n8n-workflow';
|
2020-07-08 01:00:13 -07:00
|
|
|
|
2023-06-22 07:47:28 -07:00
|
|
|
import { chunk, flatten, getResolvables } from '@utils/utilities';
|
2020-07-08 01:00:13 -07:00
|
|
|
|
2022-04-08 14:32:08 -07:00
|
|
|
import mssql from 'mssql';
|
2020-07-08 01:00:13 -07:00
|
|
|
|
2023-01-27 03:22:44 -08:00
|
|
|
import type { ITables } from './TableInterface';
|
2020-07-08 01:00:13 -07:00
|
|
|
|
|
|
|
import {
|
|
|
|
copyInputItem,
|
|
|
|
createTableStruct,
|
|
|
|
executeQueryQueue,
|
|
|
|
extractDeleteValues,
|
|
|
|
extractUpdateCondition,
|
|
|
|
extractUpdateSet,
|
|
|
|
extractValues,
|
2021-07-06 15:26:34 -07:00
|
|
|
formatColumns,
|
2020-07-08 01:00:13 -07:00
|
|
|
} from './GenericFunctions';
|
|
|
|
|
2020-07-08 01:08:00 -07:00
|
|
|
export class MicrosoftSql implements INodeType {
|
2020-07-08 01:00:13 -07:00
|
|
|
description: INodeTypeDescription = {
|
2020-07-08 01:08:00 -07:00
|
|
|
displayName: 'Microsoft SQL',
|
|
|
|
name: 'microsoftSql',
|
2021-03-07 05:02:26 -08:00
|
|
|
icon: 'file:mssql.svg',
|
2020-07-08 01:00:13 -07:00
|
|
|
group: ['input'],
|
|
|
|
version: 1,
|
2021-07-03 05:40:16 -07:00
|
|
|
description: 'Get, add and update data in Microsoft SQL',
|
2020-07-08 01:00:13 -07:00
|
|
|
defaults: {
|
2020-07-08 01:08:00 -07:00
|
|
|
name: 'Microsoft SQL',
|
2020-07-08 01:00:13 -07:00
|
|
|
},
|
|
|
|
inputs: ['main'],
|
|
|
|
outputs: ['main'],
|
|
|
|
credentials: [
|
|
|
|
{
|
2020-07-08 01:08:00 -07:00
|
|
|
name: 'microsoftSql',
|
2020-07-08 01:00:13 -07:00
|
|
|
required: true,
|
2022-09-01 05:29:15 -07:00
|
|
|
testedBy: 'microsoftSqlConnectionTest',
|
2020-07-08 01:00:13 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
properties: [
|
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2020-07-08 01:00:13 -07:00
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Execute Query',
|
|
|
|
value: 'executeQuery',
|
2020-07-24 03:56:41 -07:00
|
|
|
description: 'Execute an SQL query',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Execute a SQL query',
|
2020-07-08 01:00:13 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Insert',
|
|
|
|
value: 'insert',
|
2020-07-24 03:56:41 -07:00
|
|
|
description: 'Insert rows in database',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Insert rows in database',
|
2020-07-08 01:00:13 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Update',
|
|
|
|
value: 'update',
|
2020-07-24 03:56:41 -07:00
|
|
|
description: 'Update rows in database',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Update rows in database',
|
2020-07-08 01:00:13 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
2020-07-24 03:56:41 -07:00
|
|
|
description: 'Delete rows in database',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Delete rows in database',
|
2020-07-08 01:00:13 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'insert',
|
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// executeQuery
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Query',
|
|
|
|
name: 'query',
|
|
|
|
type: 'string',
|
2023-06-22 07:47:28 -07:00
|
|
|
noDataExpression: true,
|
2023-04-25 09:18:27 -07:00
|
|
|
typeOptions: {
|
|
|
|
editor: 'sqlEditor',
|
2023-06-22 07:47:28 -07:00
|
|
|
sqlDialect: 'MSSQL',
|
2023-04-25 09:18:27 -07:00
|
|
|
},
|
2020-07-08 01:00:13 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: ['executeQuery'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
2023-08-01 06:32:33 -07:00
|
|
|
|
2020-07-08 01:00:13 -07:00
|
|
|
placeholder: 'SELECT id, name FROM product WHERE id < 40',
|
|
|
|
required: true,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The SQL query to execute',
|
2020-07-08 01:00:13 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// insert
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Table',
|
|
|
|
name: 'table',
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: ['insert'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
required: true,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Name of the table in which to insert data to',
|
2020-07-08 01:00:13 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Columns',
|
|
|
|
name: 'columns',
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: ['insert'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
2023-08-01 06:32:33 -07:00
|
|
|
|
2020-07-08 01:00:13 -07:00
|
|
|
placeholder: 'id,name,description',
|
2022-08-17 08:50:24 -07:00
|
|
|
description:
|
|
|
|
'Comma-separated list of the properties which should used as columns for the new rows',
|
2020-07-08 01:00:13 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// update
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Table',
|
|
|
|
name: 'table',
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: ['update'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
description: 'Name of the table in which to update data in',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Update Key',
|
|
|
|
name: 'updateKey',
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: ['update'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: 'id',
|
|
|
|
required: true,
|
2022-05-06 14:01:25 -07:00
|
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-description-miscased-id
|
2022-08-17 08:50:24 -07:00
|
|
|
description:
|
|
|
|
'Name of the property which decides which rows in the database should be updated. Normally that would be "id".',
|
2020-07-08 01:00:13 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Columns',
|
|
|
|
name: 'columns',
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: ['update'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
placeholder: 'name,description',
|
2022-08-17 08:50:24 -07:00
|
|
|
description:
|
|
|
|
'Comma-separated list of the properties which should used as columns for rows to update',
|
2020-07-08 01:00:13 -07:00
|
|
|
},
|
|
|
|
|
|
|
|
// ----------------------------------
|
|
|
|
// delete
|
|
|
|
// ----------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Table',
|
|
|
|
name: 'table',
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: ['delete'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
required: true,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Name of the table in which to delete data',
|
2020-07-08 01:00:13 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Delete Key',
|
|
|
|
name: 'deleteKey',
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: ['delete'],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: 'id',
|
|
|
|
required: true,
|
2022-05-06 14:01:25 -07:00
|
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-description-miscased-id
|
2022-08-17 08:50:24 -07:00
|
|
|
description:
|
|
|
|
'Name of the property which decides which rows in the database should be deleted. Normally that would be "id".',
|
2020-07-08 01:00:13 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
};
|
|
|
|
|
2022-09-01 05:29:15 -07:00
|
|
|
methods = {
|
|
|
|
credentialTest: {
|
|
|
|
async microsoftSqlConnectionTest(
|
|
|
|
this: ICredentialTestFunctions,
|
|
|
|
credential: ICredentialsDecrypted,
|
|
|
|
): Promise<INodeCredentialTestResult> {
|
|
|
|
const credentials = credential.data as ICredentialDataDecryptedObject;
|
|
|
|
try {
|
|
|
|
const config = {
|
|
|
|
server: credentials.server as string,
|
|
|
|
port: credentials.port as number,
|
|
|
|
database: credentials.database as string,
|
|
|
|
user: credentials.user as string,
|
|
|
|
password: credentials.password as string,
|
|
|
|
domain: credentials.domain ? (credentials.domain as string) : undefined,
|
|
|
|
connectionTimeout: credentials.connectTimeout as number,
|
|
|
|
requestTimeout: credentials.requestTimeout as number,
|
|
|
|
options: {
|
|
|
|
encrypt: credentials.tls as boolean,
|
|
|
|
enableArithAbort: false,
|
2023-03-09 02:05:03 -08:00
|
|
|
tdsVersion: credentials.tdsVersion as string,
|
|
|
|
trustServerCertificate: credentials.allowUnauthorizedCerts as boolean,
|
2022-09-01 05:29:15 -07:00
|
|
|
},
|
|
|
|
};
|
|
|
|
const pool = new mssql.ConnectionPool(config);
|
|
|
|
await pool.connect();
|
|
|
|
} catch (error) {
|
|
|
|
return {
|
|
|
|
status: 'Error',
|
|
|
|
message: error.message,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
return {
|
|
|
|
status: 'OK',
|
|
|
|
message: 'Connection successful!',
|
|
|
|
};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2020-07-08 01:00:13 -07:00
|
|
|
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
2021-08-20 09:57:30 -07:00
|
|
|
const credentials = await this.getCredentials('microsoftSql');
|
2020-07-08 01:00:13 -07:00
|
|
|
|
|
|
|
const config = {
|
|
|
|
server: credentials.server as string,
|
|
|
|
port: credentials.port as number,
|
|
|
|
database: credentials.database as string,
|
|
|
|
user: credentials.user as string,
|
|
|
|
password: credentials.password as string,
|
|
|
|
domain: credentials.domain ? (credentials.domain as string) : undefined,
|
2021-07-06 15:26:34 -07:00
|
|
|
connectionTimeout: credentials.connectTimeout as number,
|
|
|
|
requestTimeout: credentials.requestTimeout as number,
|
2020-11-10 14:30:03 -08:00
|
|
|
options: {
|
2020-11-10 14:30:40 -08:00
|
|
|
encrypt: credentials.tls as boolean,
|
2021-06-20 02:00:25 -07:00
|
|
|
enableArithAbort: false,
|
2022-09-21 17:41:44 -07:00
|
|
|
tdsVersion: credentials.tdsVersion as string,
|
2023-03-09 02:05:03 -08:00
|
|
|
trustServerCertificate: credentials.allowUnauthorizedCerts as boolean,
|
2020-11-10 14:30:40 -08:00
|
|
|
},
|
2020-07-08 01:00:13 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
const pool = new mssql.ConnectionPool(config);
|
|
|
|
await pool.connect();
|
|
|
|
|
2022-08-30 08:55:33 -07:00
|
|
|
const returnItems: INodeExecutionData[] = [];
|
|
|
|
let responseData: IDataObject | IDataObject[] = [];
|
2020-07-08 01:00:13 -07:00
|
|
|
|
|
|
|
const items = this.getInputData();
|
2022-12-02 03:53:59 -08:00
|
|
|
const operation = this.getNodeParameter('operation', 0);
|
2020-07-08 01:00:13 -07:00
|
|
|
|
|
|
|
try {
|
|
|
|
if (operation === 'executeQuery') {
|
|
|
|
// ----------------------------------
|
|
|
|
// executeQuery
|
|
|
|
// ----------------------------------
|
|
|
|
|
2023-06-22 07:47:28 -07:00
|
|
|
let rawQuery = this.getNodeParameter('query', 0) as string;
|
|
|
|
|
|
|
|
for (const resolvable of getResolvables(rawQuery)) {
|
|
|
|
rawQuery = rawQuery.replace(resolvable, this.evaluateExpression(resolvable, 0) as string);
|
|
|
|
}
|
2020-07-08 01:00:13 -07:00
|
|
|
|
|
|
|
const queryResult = await pool.request().query(rawQuery);
|
|
|
|
|
|
|
|
const result =
|
|
|
|
queryResult.recordsets.length > 1
|
|
|
|
? flatten(queryResult.recordsets)
|
|
|
|
: queryResult.recordsets[0];
|
|
|
|
|
2022-08-30 08:55:33 -07:00
|
|
|
responseData = result;
|
2020-07-08 01:00:13 -07:00
|
|
|
} else if (operation === 'insert') {
|
|
|
|
// ----------------------------------
|
|
|
|
// insert
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
const tables = createTableStruct(this.getNodeParameter, items);
|
2020-07-08 04:48:35 -07:00
|
|
|
await executeQueryQueue(
|
2020-07-08 01:00:13 -07:00
|
|
|
tables,
|
|
|
|
({
|
|
|
|
table,
|
|
|
|
columnString,
|
2022-12-02 12:54:28 -08:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-shadow
|
2020-07-08 01:00:13 -07:00
|
|
|
items,
|
|
|
|
}: {
|
|
|
|
table: string;
|
|
|
|
columnString: string;
|
|
|
|
items: IDataObject[];
|
2020-07-08 01:08:00 -07:00
|
|
|
}): Array<Promise<object>> => {
|
2022-12-02 12:54:28 -08:00
|
|
|
return chunk(items, 1000).map(async (insertValues) => {
|
2022-08-17 08:50:24 -07:00
|
|
|
const values = insertValues.map((item: IDataObject) => extractValues(item)).join(',');
|
2020-07-08 01:00:13 -07:00
|
|
|
return pool
|
|
|
|
.request()
|
2022-08-17 08:50:24 -07:00
|
|
|
.query(`INSERT INTO ${table}(${formatColumns(columnString)}) VALUES ${values};`);
|
2020-07-08 01:00:13 -07:00
|
|
|
});
|
2020-10-22 09:00:28 -07:00
|
|
|
},
|
2020-07-08 01:00:13 -07:00
|
|
|
);
|
|
|
|
|
2022-08-30 08:55:33 -07:00
|
|
|
responseData = items;
|
2020-07-08 01:00:13 -07:00
|
|
|
} else if (operation === 'update') {
|
|
|
|
// ----------------------------------
|
|
|
|
// update
|
|
|
|
// ----------------------------------
|
|
|
|
|
|
|
|
const updateKeys = items.map(
|
2020-10-22 09:00:28 -07:00
|
|
|
(item, index) => this.getNodeParameter('updateKey', index) as string,
|
2020-07-08 01:00:13 -07:00
|
|
|
);
|
|
|
|
const tables = createTableStruct(
|
|
|
|
this.getNodeParameter,
|
|
|
|
items,
|
2020-07-08 01:50:18 -07:00
|
|
|
['updateKey'].concat(updateKeys),
|
2020-10-22 09:00:28 -07:00
|
|
|
'updateKey',
|
2020-07-08 01:00:13 -07:00
|
|
|
);
|
2020-07-08 04:48:35 -07:00
|
|
|
await executeQueryQueue(
|
2020-07-08 01:00:13 -07:00
|
|
|
tables,
|
|
|
|
({
|
|
|
|
table,
|
|
|
|
columnString,
|
2022-12-02 12:54:28 -08:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-shadow
|
2020-07-08 01:00:13 -07:00
|
|
|
items,
|
|
|
|
}: {
|
|
|
|
table: string;
|
|
|
|
columnString: string;
|
|
|
|
items: IDataObject[];
|
2020-07-08 01:08:00 -07:00
|
|
|
}): Array<Promise<object>> => {
|
2022-12-02 12:54:28 -08:00
|
|
|
return items.map(async (item) => {
|
2022-08-17 08:50:24 -07:00
|
|
|
const columns = columnString.split(',').map((column) => column.trim());
|
2020-07-08 01:00:13 -07:00
|
|
|
|
|
|
|
const setValues = extractUpdateSet(item, columns);
|
2022-08-17 08:50:24 -07:00
|
|
|
const condition = extractUpdateCondition(item, item.updateKey as string);
|
2020-07-08 01:00:13 -07:00
|
|
|
|
2022-08-17 08:50:24 -07:00
|
|
|
return pool.request().query(`UPDATE ${table} SET ${setValues} WHERE ${condition};`);
|
2020-07-08 01:00:13 -07:00
|
|
|
});
|
2020-10-22 09:00:28 -07:00
|
|
|
},
|
2020-07-08 01:00:13 -07:00
|
|
|
);
|
|
|
|
|
2022-08-30 08:55:33 -07:00
|
|
|
responseData = items;
|
2020-07-08 01:00:13 -07:00
|
|
|
} else if (operation === 'delete') {
|
|
|
|
// ----------------------------------
|
|
|
|
// delete
|
|
|
|
// ----------------------------------
|
|
|
|
|
2022-12-02 12:54:28 -08:00
|
|
|
const tables = items.reduce((acc, item, index) => {
|
2020-07-08 01:00:13 -07:00
|
|
|
const table = this.getNodeParameter('table', index) as string;
|
|
|
|
const deleteKey = this.getNodeParameter('deleteKey', index) as string;
|
2022-12-02 12:54:28 -08:00
|
|
|
if (acc[table] === undefined) {
|
|
|
|
acc[table] = {};
|
2020-07-08 01:00:13 -07:00
|
|
|
}
|
2022-12-02 12:54:28 -08:00
|
|
|
if (acc[table][deleteKey] === undefined) {
|
|
|
|
acc[table][deleteKey] = [];
|
2020-07-08 01:00:13 -07:00
|
|
|
}
|
2022-12-02 12:54:28 -08:00
|
|
|
acc[table][deleteKey].push(item);
|
|
|
|
return acc;
|
2020-07-08 01:00:13 -07:00
|
|
|
}, {} as ITables);
|
|
|
|
|
|
|
|
const queriesResults = await Promise.all(
|
2022-12-02 12:54:28 -08:00
|
|
|
Object.keys(tables).map(async (table) => {
|
|
|
|
const deleteKeyResults = Object.keys(tables[table]).map(async (deleteKey) => {
|
2022-08-17 08:50:24 -07:00
|
|
|
const deleteItemsList = chunk(
|
|
|
|
tables[table][deleteKey].map((item) =>
|
|
|
|
copyInputItem(item as INodeExecutionData, [deleteKey]),
|
|
|
|
),
|
|
|
|
1000,
|
|
|
|
);
|
2022-12-02 12:54:28 -08:00
|
|
|
const queryQueue = deleteItemsList.map(async (deleteValues) => {
|
2022-08-17 08:50:24 -07:00
|
|
|
return pool
|
|
|
|
.request()
|
|
|
|
.query(
|
|
|
|
`DELETE FROM ${table} WHERE "${deleteKey}" IN ${extractDeleteValues(
|
2023-08-01 02:57:29 -07:00
|
|
|
deleteValues,
|
2022-08-17 08:50:24 -07:00
|
|
|
deleteKey,
|
|
|
|
)};`,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
return Promise.all(queryQueue);
|
|
|
|
});
|
2020-07-08 01:00:13 -07:00
|
|
|
return Promise.all(deleteKeyResults);
|
2020-10-22 09:00:28 -07:00
|
|
|
}),
|
2020-07-08 01:00:13 -07:00
|
|
|
);
|
|
|
|
|
2020-07-08 04:48:35 -07:00
|
|
|
const rowsDeleted = flatten(queriesResults).reduce(
|
2020-07-08 01:00:13 -07:00
|
|
|
(acc: number, resp: mssql.IResult<object>): number =>
|
|
|
|
(acc += resp.rowsAffected.reduce((sum, val) => (sum += val))),
|
2020-10-22 09:00:28 -07:00
|
|
|
0,
|
2020-07-08 01:00:13 -07:00
|
|
|
);
|
|
|
|
|
2022-08-30 08:55:33 -07:00
|
|
|
responseData = rowsDeleted;
|
2020-07-08 01:00:13 -07:00
|
|
|
} else {
|
|
|
|
await pool.close();
|
2022-08-17 08:50:24 -07:00
|
|
|
throw new NodeOperationError(
|
|
|
|
this.getNode(),
|
|
|
|
`The operation "${operation}" is not supported!`,
|
|
|
|
);
|
2020-07-08 01:00:13 -07:00
|
|
|
}
|
2021-04-16 09:33:36 -07:00
|
|
|
} catch (error) {
|
2022-12-02 12:54:28 -08:00
|
|
|
if (this.continueOnFail()) {
|
2022-08-30 08:55:33 -07:00
|
|
|
responseData = items;
|
2020-07-08 01:00:13 -07:00
|
|
|
} else {
|
|
|
|
await pool.close();
|
2021-04-16 09:33:36 -07:00
|
|
|
throw error;
|
2020-07-08 01:00:13 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close the connection
|
|
|
|
await pool.close();
|
2022-08-30 08:55:33 -07:00
|
|
|
const executionData = this.helpers.constructExecutionMetaData(
|
|
|
|
this.helpers.returnJsonArray(responseData),
|
|
|
|
{ itemData: { item: 0 } },
|
|
|
|
);
|
2020-07-08 01:00:13 -07:00
|
|
|
|
2022-08-30 08:55:33 -07:00
|
|
|
returnItems.push(...executionData);
|
2020-07-08 01:00:13 -07:00
|
|
|
return this.prepareOutputData(returnItems);
|
|
|
|
}
|
|
|
|
}
|