Member Junction
    Preparing search index...

    A node in a record dependency graph.

    interface DependencyNode {
        Children: DependencyNode[];
        Depth: number;
        EntityInfo: EntityInfo;
        EntityName: string;
        RecordData: Record<string, unknown>;
        RecordID: string;
        RecordKey: CompositeKey;
        Relationship: EntityRelationshipInfo;
    }
    Index

    Properties

    Children: DependencyNode[]

    Child/dependent record nodes

    Depth: number

    Depth in the graph (0 = root)

    EntityInfo: EntityInfo

    Entity metadata

    EntityName: string

    Entity name

    RecordData: Record<string, unknown>

    Current field values of the record

    RecordID: string

    The record's primary key as a concatenated string

    RecordKey: CompositeKey

    The record's primary key

    Relationship from parent to this node (null for root)