Member Junction
    Preparing search index...

    Type Alias RunViewGenericParams

    type RunViewGenericParams = {
        afterKey?: CompositeKey;
        aggregates?: AggregateExpression[];
        auditLogDescription?: string;
        bypassCache?: boolean;
        excludeDataFromAllPriorViewRuns?: boolean;
        excludeUserViewRunID?: string;
        extraFilter: string;
        fields?: string[];
        forceAuditLog?: boolean;
        ignoreMaxRows?: boolean;
        maxRows?: number;
        orderBy: string;
        overrideExcludeFilter?: string;
        provider: DatabaseProviderBase;
        resultType?: string;
        saveViewResults?: boolean;
        startRow?: number;
        userPayload?: UserPayload;
        userSearchString: string;
        viewInfo: MJUserViewEntityExtended;
    }
    Index

    Properties

    afterKey?: CompositeKey

    Keyset (seek) pagination cursor — see RunViewParams.AfterKey. When set, the entity must have a single-column PK; throws AfterKeyNotSupportedError otherwise.

    aggregates?: AggregateExpression[]
    auditLogDescription?: string
    bypassCache?: boolean

    When true, the server-side cache layer is bypassed for this view run — neither the pre-check cache lookup nor the post-query cache write happens. Propagated to RunViewParams.BypassCache.

    excludeDataFromAllPriorViewRuns?: boolean
    excludeUserViewRunID?: string
    extraFilter: string
    fields?: string[]
    forceAuditLog?: boolean
    ignoreMaxRows?: boolean
    maxRows?: number
    orderBy: string
    overrideExcludeFilter?: string
    resultType?: string
    saveViewResults?: boolean
    startRow?: number
    userPayload?: UserPayload
    userSearchString: string