Member Junction
    Preparing search index...

    Interface EntityHierarchyNavigationEvent

    User clicked an IS-A parent entity badge in the hierarchy breadcrumb or an "Inherited from X" badge in a section header.

    interface EntityHierarchyNavigationEvent {
        Direction: "parent" | "child" | "self";
        EntityName: string;
        Kind: "entity-hierarchy";
        PrimaryKey: CompositeKey;
    }
    Index

    Properties

    Direction: "parent" | "child" | "self"

    'parent' = navigating up the chain, 'child' = navigating down, 'self' = current entity clicked

    EntityName: string

    The parent entity name to navigate to

    Kind: "entity-hierarchy"
    PrimaryKey: CompositeKey

    The parent record's primary key (shared PK in IS-A)