mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-17 01:54:06 -08:00
af69c80bf5
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com> Co-authored-by: Shireen Missi <94372015+ShireenMissi@users.noreply.github.com>
33 lines
744 B
TypeScript
33 lines
744 B
TypeScript
import {
|
|
type IExecuteFunctions,
|
|
type INodeExecutionData,
|
|
type INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
import { updateDisplayOptions } from '@utils/utilities';
|
|
|
|
import { numberInputsProperty } from '../../helpers/descriptions';
|
|
|
|
export const properties: INodeProperties[] = [numberInputsProperty];
|
|
|
|
const displayOptions = {
|
|
show: {
|
|
mode: ['append'],
|
|
},
|
|
};
|
|
|
|
export const description = updateDisplayOptions(displayOptions, properties);
|
|
|
|
export async function execute(
|
|
this: IExecuteFunctions,
|
|
inputsData: INodeExecutionData[][],
|
|
): Promise<INodeExecutionData[]> {
|
|
const returnData: INodeExecutionData[] = [];
|
|
|
|
for (let i = 0; i < inputsData.length; i++) {
|
|
returnData.push.apply(returnData, inputsData[i]);
|
|
}
|
|
|
|
return returnData;
|
|
}
|