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

    Interface NodePath

    Path to a node in the AST

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

    Properties

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