mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-07 02:47:32 -08:00
17 lines
579 B
TypeScript
17 lines
579 B
TypeScript
import type { IExecuteFunctions } from 'n8n-workflow';
|
|
import { getNodeInputsData } from '../helpers/utils';
|
|
import type { MergeType } from './node.type';
|
|
import * as mode from './mode';
|
|
|
|
export async function router(this: IExecuteFunctions) {
|
|
const inputsData = getNodeInputsData.call(this);
|
|
let operationMode = this.getNodeParameter('mode', 0) as string;
|
|
|
|
if (operationMode === 'combine') {
|
|
const combineBy = this.getNodeParameter('combineBy', 0) as string;
|
|
operationMode = combineBy;
|
|
}
|
|
|
|
return await mode[operationMode as MergeType].execute.call(this, inputsData);
|
|
}
|