Member Junction
    Preparing search index...

    Read parameters for fetching rows from a named source. A subset of MJ's RunViewParams, narrowed to what FeatureAssembly needs (read-only).

    interface FetchRowsParams {
        EntityName: string;
        ExtraFilter?: string;
        Fields?: string[];
        MaxRows?: number;
        OrderBy?: string;
    }
    Index

    Properties

    EntityName: string

    Entity / external-entity name to read from.

    ExtraFilter?: string

    Optional SQL-ish filter expression (passed through to RunView's ExtraFilter).

    Fields?: string[]

    Optional column projection — narrows the read for performance.

    MaxRows?: number

    Optional cap on rows returned.

    OrderBy?: string

    Optional ordering expression (passed through to RunView's OrderBy).