mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
feat: Do not assign all paired items (no-changelog) (#11716)
This commit is contained in:
@@ -19,7 +19,6 @@ import {
|
||||
} from './GenericFunctions';
|
||||
import { recordFields, recordOperations } from './RecordDescription';
|
||||
import { reportFields, reportOperations } from './ReportDescription';
|
||||
import { generatePairedItemData } from '../../utils/utilities';
|
||||
|
||||
export class QuickBase implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
@@ -114,7 +113,6 @@ export class QuickBase implements INodeType {
|
||||
|
||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
const items = this.getInputData();
|
||||
const itemData = generatePairedItemData(items.length);
|
||||
const returnData: INodeExecutionData[] = [];
|
||||
const length = items.length;
|
||||
const qs: IDataObject = {};
|
||||
@@ -292,10 +290,7 @@ export class QuickBase implements INodeType {
|
||||
}
|
||||
}
|
||||
|
||||
const executionData = this.helpers.constructExecutionMetaData(
|
||||
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
||||
{ itemData },
|
||||
);
|
||||
const executionData = this.helpers.returnJsonArray(responseData as IDataObject[]);
|
||||
|
||||
returnData.push(...executionData);
|
||||
}
|
||||
@@ -462,10 +457,7 @@ export class QuickBase implements INodeType {
|
||||
}
|
||||
}
|
||||
|
||||
const executionData = this.helpers.constructExecutionMetaData(
|
||||
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
||||
{ itemData },
|
||||
);
|
||||
const executionData = this.helpers.returnJsonArray(responseData as IDataObject[]);
|
||||
|
||||
returnData.push(...executionData);
|
||||
}
|
||||
@@ -545,10 +537,7 @@ export class QuickBase implements INodeType {
|
||||
}
|
||||
}
|
||||
|
||||
const executionData = this.helpers.constructExecutionMetaData(
|
||||
this.helpers.returnJsonArray(responseData as IDataObject[]),
|
||||
{ itemData },
|
||||
);
|
||||
const executionData = this.helpers.returnJsonArray(responseData as IDataObject[]);
|
||||
|
||||
returnData.push(...executionData);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user