Member Junction
    Preparing search index...

    Represents a node (entity/table) in the ERD.

    interface ERDNode {
        baseTable?: string;
        customData?: Record<string, unknown>;
        description?: string;
        fields: ERDField[];
        id: string;
        name: string;
        schemaName?: string;
        status?: string;
    }
    Index

    Properties

    baseTable?: string

    Base table name (if different from display name)

    customData?: Record<string, unknown>

    Additional custom data that can be used by the consumer

    description?: string

    Optional description

    fields: ERDField[]

    All fields in this node

    id: string

    Unique identifier for the node

    name: string

    Display name of the node

    schemaName?: string

    Optional schema/namespace name

    status?: string

    Status of the node (e.g., 'Active', 'Deprecated')