Polyglot SQL API Documentation - v0.1.0
    Preparing search index...

    Interface NodePath

    Path to a node in the AST

    interface NodePath {
        ancestors: Expression[];
        index: number | null;
        key: string | null;
        node: Expression;
        parent: Expression | null;
    }
    Index

    Properties

    ancestors: Expression[]
    index: number | null
    key: string | null
    parent: Expression | null