Hiyve Components - v1.0.0
    Preparing search index...

    An edge in the network graph

    interface GraphEdge {
        properties?: Record<string, unknown>;
        source: string;
        target: string;
        type?: string;
        weight?: number;
    }
    Index

    Properties

    properties?: Record<string, unknown>

    Additional properties

    source: string

    Source node ID

    target: string

    Target node ID

    type?: string

    Edge type

    weight?: number

    Edge weight (affects line width)