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

    Interface StatementLineage

    Lineage information for a single SQL statement.

    interface StatementLineage {
        edges: Edge[];
        nodes: Node[];
        span?: Span;
        statementIndex: number;
        statementType: string;
    }
    Index

    Properties

    edges: Edge[]

    All edges connecting nodes in the lineage graph

    nodes: Node[]

    All nodes in the lineage graph for this statement

    span?: Span

    Optional span of the entire statement in source SQL

    statementIndex: number

    Zero-based index of the statement in the input SQL

    statementType: string

    Type of SQL statement