markmv - v1.39.2
    Preparing search index...

    Interface GraphCliOptions

    CLI-specific options for the graph command.

    interface GraphCliOptions {
        output?: string;
        open?: boolean;
        format?: string;
        json?: boolean;
        includeExternal?: boolean;
        includeImages?: boolean;
        includeAnchors?: boolean;
        maxDepth?: number;
        baseDir?: string;
        dryRun?: boolean;
        verbose?: boolean;
        force?: boolean;
    }

    Hierarchy

    Index
    output?: string

    Output file path (optional)

    open?: boolean

    Whether to open the generated file

    format?: string

    Output format as string

    json?: boolean

    Output results in JSON format

    includeExternal?: boolean

    Include external links in the graph

    includeImages?: boolean

    Include image links in the graph

    includeAnchors?: boolean

    Include anchor links in the graph

    maxDepth?: number

    Maximum depth for dependency traversal

    baseDir?: string

    Base directory for relative path calculations

    dryRun?: boolean

    Show what would be changed without making changes

    verbose?: boolean

    Show detailed output

    force?: boolean

    Force operation even if conflicts exist