mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(Execute Sub-workflow Node): Improve paired item handling for child workflows (#17065)
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user