Member Junction
    Preparing search index...

    A reference to a single record to be processed.

    interface RecordRef {
        EntityID: string;
        Record?: unknown;
        RecordID: string;
    }
    Index

    Properties

    EntityID: string

    ID of the entity this record belongs to.

    Record?: unknown

    Optional already-loaded record data (a plain row or a BaseEntity), to save a re-fetch.

    RecordID: string

    The record's primary key, serialized to a composite-key-safe string.