Search for all the data files required to create a final file.

Parameters:
See dedicated page for more information.
See dedicated page for more information.
The dependencies action button traces the complete data lineage for a final output file. It identifies all the files and transformation steps (pipelines) involved, from the original data sources to the final result, by analyzing the direction of data flow between them.
This action requires an input table that defines file dependencies in terms of source (input) and destination (output) relationships.
Expected columns in the input file:
Direction: Specifies the role of each file in the data flow. Accepted values are input or output.fileName: Name of the file or pipeline involved in the transformation.Accepted format:
readCSV node.Direction, fileName.The output is a visual and tabular representation of dependencies:
| Parameter | Description | Example value |
|---|---|---|
column with direction of data flow (input/output) |
Name of the column that contains input or output. |
Direction |
column with pipeline name |
Name of the column with file/pipeline names. | fileName |
Prepare the input file with two columns:
Direction (values: input, output)fileName (e.g., data.csv, pipeline_X)Example:
Direction,fileName
input,data_raw.csv
output,cleaned.csv
input,cleaned.csv
output,final_report.csv
Add a readCSV node to load the file.
Connect the output of the readCSV node to the top-left pin of the dependencies node (Input Pin 1).
Configure the parameters in the dependencies node:
Run the pipeline (not just preview mode) to generate the transformation path.
Check the output using a downstream RunToFinishLine, or a view/log node.
