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

    Interface OutboundLink

    One outbound link from a source note. Both resolved and unresolved variants share this shape — resolved_path is null when the target is broken (and include_unresolved was true).

    interface OutboundLink {
        alias: string | null;
        block: string | null;
        kind: "embed" | "wikilink";
        raw: string;
        resolved_path: string | null;
        resolved_title: string | null;
        section: string | null;
        target: string;
    }
    Index

    Properties

    alias: string | null

    Display alias, or null.

    block: string | null

    ^block anchor, or null.

    kind: "embed" | "wikilink"

    Wikilink vs. embed.

    raw: string

    Raw inner-bracket text.

    resolved_path: string | null

    Vault-relative path of the resolved target, or null if unresolved.

    resolved_title: string | null

    .md-stripped basename of the resolved target, or null.

    section: string | null

    #section anchor, or null.

    target: string

    Link target as written.