fix(Execute Sub-workflow Node): Improve paired item handling for child workflows (#17065)

This commit is contained in:
Andreas Fitzek
2025-07-09 11:01:57 +02:00
committed by GitHub
parent 62ea048bbf
commit f5fb33a3fa
6 changed files with 679 additions and 1 deletions

View File

@@ -142,6 +142,10 @@ export class BaseExecuteContext extends NodeExecutionContext {
return { ...result, data };
}
async getExecutionDataById(executionId: string): Promise<IRunExecutionData | undefined> {
return await this.additionalData.getRunExecutionData(executionId);
}
protected getInputItems(inputIndex: number, connectionType: NodeConnectionType) {
const inputData = this.inputData[connectionType];
if (inputData.length < inputIndex) {