markmv - v1.39.2
    Preparing search index...

    Interface GraphNode

    Represents a node in the link graph.

    interface GraphNode {
        id: string;
        label: string;
        path: string;
        relativePath: string;
        type: "external" | "image" | "markdown" | "directory";
        stats: { inbound: number; outbound: number; total: number };
        properties: { size?: number; isHub?: boolean; isOrphan?: boolean };
    }
    Index
    id: string

    Unique identifier for the node

    label: string

    Display label for the node

    path: string

    Absolute file path

    relativePath: string

    Relative path from base directory

    type: "external" | "image" | "markdown" | "directory"

    Node type

    stats: { inbound: number; outbound: number; total: number }

    Node statistics

    Type Declaration

    • inbound: number

      Number of incoming links

    • outbound: number

      Number of outgoing links

    • total: number

      Total link count

    properties: { size?: number; isHub?: boolean; isOrphan?: boolean }

    Additional node properties

    Type Declaration

    • Optionalsize?: number

      File size in bytes (for files)

    • OptionalisHub?: boolean

      Whether this is a hub node (high connectivity)

    • OptionalisOrphan?: boolean

      Whether this is an orphaned node (no connections)