Member Junction
    Preparing search index...

    Options for MaterializeFromView — creates a new list from a view result.

    RememberLineage controls whether the new list captures the source view ID + filter snapshot. With it false, the list is a one-shot copy and cannot be refreshed.

    UseSnapshot controls refresh behaviour when lineage is remembered: when true, refreshes re-apply the captured filter snapshot; when false, refreshes re-read the live view (default).

    interface MaterializeOptions {
        CategoryId?: string;
        Description?: string;
        ListName: string;
        RefreshMode: ListRefreshMode;
        RememberLineage: boolean;
        UseSnapshot: boolean;
    }
    Index

    Properties

    CategoryId?: string
    Description?: string
    ListName: string
    RefreshMode: ListRefreshMode
    RememberLineage: boolean
    UseSnapshot: boolean