Home > @idealeap/pipeline > Pipeline > execute
Pipeline.execute() method
Executes the pipeline using the provided input.
Signature:
typescript
execute(input?: any): Promise<Record<string, any> | Record<string, any>[]>;
execute(input?: any): Promise<Record<string, any> | Record<string, any>[]>;
Parameters
Parameter | Type | Description |
---|---|---|
input | any | (Optional) The initial input for the pipeline. |
Returns:
Promise<Record<string, any> | Record<string, any>[]>
A record containing the results of each pipe's execution.
Exceptions
Will throw an error if an expected output is missing or if an invalid configuration is detected.