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

    Interface Node

    A node in the lineage graph (table, CTE, or column).

    interface Node {
        expression?: string;
        id: string;
        label: string;
        metadata?: Record<string, unknown>;
        qualifiedName?: string;
        span?: Span;
        type: NodeType;
    }
    Index

    Properties

    expression?: string

    SQL expression text for computed columns

    id: string

    Stable content-based hash ID

    label: string

    Human-readable label (short name)

    metadata?: Record<string, unknown>

    Extensible metadata for future use

    qualifiedName?: string

    Fully qualified name when available

    span?: Span

    Source location in original SQL

    type: NodeType

    Node type