Member Junction
    Preparing search index...

    Lightweight stand-in for BaseEntity used when a record is unchanged and only needs to be present in the batch context for @parent:ID /

    resolution. Avoids pulling a full entity from the DB just to satisfy downstream references.

    interface BatchContextStub {
        EntityInfo: {
            Fields: { Name: string }[];
            Name: string;
            PrimaryKeys: { Name: string }[];
        };
        Get(field: string): unknown;
        GetAll(): Record<string, unknown>;
    }
    Index

    Properties

    Methods

    Properties

    EntityInfo: {
        Fields: { Name: string }[];
        Name: string;
        PrimaryKeys: { Name: string }[];
    }

    Methods