Member Junction
    Preparing search index...

    One entity's freshness posture within a planned read/join.

    interface EntityFreshness {
        entityName: string;
        isMaterialized: boolean;
        lastRefreshedAt?: Date;
        status?: string;
    }
    Index

    Properties

    entityName: string
    isMaterialized: boolean

    True when this entity is being read from its materialized snapshot (DataSource:'Materialized').

    lastRefreshedAt?: Date

    When the snapshot was last refreshed, when materialized.

    status?: string

    MaterializedResult.Status, when materialized (e.g. 'Active', 'Stale', 'DriftHold').