Member Junction
    Preparing search index...

    Interface EngineDataMapEntry

    Tracks the load state and data for a single engine property (entity or dataset config).

    interface EngineDataMapEntry {
        data: unknown[];
        datasetName?: string;
        entityName?: string;
        errorMessage?: string;
        loadedSuccessfully: boolean;
        permissionDenied?: boolean;
    }
    Index

    Properties

    data: unknown[]
    datasetName?: string
    entityName?: string
    errorMessage?: string
    loadedSuccessfully: boolean
    permissionDenied?: boolean

    True when this config was skipped because the current user lacks read permission on its entity. The data array will be empty [].