Member Junction
    Preparing search index...

    One catalog query plus its runtime-derived parameter classification.

    interface CatalogQueryClass {
        HasDependencies: boolean;
        Params: MJQueryParameterEntity[];
        Query: MJQueryEntityExtended;
        RawParams: MJQueryParameterEntity[];
        RawSpliceParams: MJQueryParameterEntity[];
        RequiredParams: MJQueryParameterEntity[];
        StrippedSQL: string;
    }
    Index

    Properties

    HasDependencies: boolean

    True when the query is the referencing side of ≥1 composition dependency.

    All declared parameter definitions for the query.

    The engine's extended query entity (child getters read the QueryEngine cache).

    Params whose token appears RAW in the SQL — {{ name }} with no | filter pipe.

    RawSpliceParams: MJQueryParameterEntity[]

    Raw params that splice TEXT into SQL (string/array/date types) — the identifier hotspot.

    RequiredParams: MJQueryParameterEntity[]

    The subset with IsRequired=true.

    StrippedSQL: string

    Comment-stripped base SQL — the text raw-token detection runs against.