import { Service } from 'typedi'; import { DataSource, In, Repository } from '@n8n/typeorm'; import { ExecutionData } from '../entities/ExecutionData'; @Service() export class ExecutionDataRepository extends Repository { constructor(dataSource: DataSource) { super(ExecutionData, dataSource.manager); } async findByExecutionIds(executionIds: string[]) { return await this.find({ select: ['workflowData'], where: { executionId: In(executionIds), }, }).then((executionData) => executionData.map(({ workflowData }) => workflowData)); } }