Member Junction
    Preparing search index...

    Input type for TestQuerySQL method calls — tests transient SQL with full composition + Nunjucks template processing without requiring a saved query.

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

    Properties

    Inline dependency queries for composition resolution

    MaxRows?: number

    Max rows to return (default: 100)

    Parameters?: Record<string, string>

    Parameter values for Nunjucks template substitution

    SQL: string

    The raw SQL — may contain {{query:"..."}} and {{ param }} tokens

    UsesTemplate?: boolean

    Whether this query uses Nunjucks template syntax