Member Junction
    Preparing search index...

    Input type for inline dependency queries used in TestQuerySQL. Self-referencing to support recursive dependency trees.

    interface QueryDependencySpecClientInput {
        CategoryPath: string;
        Dependencies?: QueryDependencySpecClientInput[];
        Name: string;
        Parameters?: Record<string, string>;
        SQL: string;
        UsesTemplate?: boolean;
    }
    Index

    Properties

    CategoryPath: string

    Category path as referenced in the composition token (e.g., "/Analytics/Sales/")

    Nested dependencies (recursive)

    Name: string

    Query name as referenced in the composition token

    Parameters?: Record<string, string>

    Parameters for this dependency's Nunjucks templates

    SQL: string

    The raw SQL for this dependency

    UsesTemplate?: boolean

    Whether this dependency uses Nunjucks template syntax