enquire-mcp API reference - v3.9.0-rc.4
    Preparing search index...

    Interface CanvasEdge

    A directed canvas edge between two nodes.

    from_side / to_side are Obsidian's "top" | "right" | "bottom" | "left" anchor specifiers (passed through as strings — no validation, forward- compatible with new variants).

    interface CanvasEdge {
        color?: string;
        from_node: string;
        from_side?: string;
        id: string;
        label?: string;
        to_node: string;
        to_side?: string;
    }
    Index

    Properties

    color?: string

    Hex / named color. Omitted if absent.

    from_node: string

    Source node ID.

    from_side?: string

    Source node anchor side (e.g. "right"). Omitted if absent.

    id: string

    Canvas-internal edge ID.

    label?: string

    Edge label string. Omitted if absent.

    to_node: string

    Destination node ID.

    to_side?: string

    Destination node anchor side. Omitted if absent.