Member Junction
    Preparing search index...

    Recent record access for home screen (from User Record Logs)

    interface RecentRecordAccess {
        entityId: string;
        entityName: string;
        latestAt: Date;
        recordId: string;
        recordName?: string;
        relativeTime?: string;
        totalCount: number;
    }
    Index

    Properties

    entityId: string
    entityName: string
    latestAt: Date
    recordId: string
    recordName?: string
    relativeTime?: string

    Pre-computed "N ago" relative-time label for display. Populated by the dashboard when the record set loads and refreshed on a timer, so the template binds a STABLE field instead of calling a Date.now()-based method during change detection (which triggers NG0100). See the DataExplorerDashboardComponent relative-time handling.

    totalCount: number