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

    Interface AnalyzeRequest

    A request to analyze SQL for data lineage.

    This is the main entry point for the analysis API. It accepts SQL code along with optional dialect and schema information to produce accurate lineage graphs.

    interface AnalyzeRequest {
        dialect: Dialect;
        options?: AnalysisOptions;
        schema?: SchemaMetadata;
        sql: string;
    }
    Index

    Properties

    dialect: Dialect

    SQL dialect

    options?: AnalysisOptions

    Optional analysis options

    Optional schema metadata for accurate column resolution

    sql: string

    The SQL code to analyze (UTF-8 string, multi-statement supported)