@pondpilot/flowscope-core
    Preparing search index...

    Interface Edge

    An edge connecting two nodes in the lineage graph.

    interface Edge {
        expression?: string;
        from: string;
        id: string;
        metadata?: Record<string, unknown>;
        operation?: string;
        to: string;
        type: EdgeType;
    }
    Index

    Properties

    expression?: string

    Optional: SQL expression if this edge represents a transformation

    from: string

    Source node ID

    id: string

    Stable content-based hash ID

    metadata?: Record<string, unknown>

    Extensible metadata for future use

    operation?: string

    Optional: operation label ('JOIN', 'UNION', 'AGGREGATE', etc.)

    to: string

    Target node ID

    type: EdgeType

    Edge type