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

    Interface BacklinkHit

    One backlink hit — a note that links to the target.

    count is how many distinct links from that note point at the target (a note can link to the same target multiple times). snippets includes up to 2 context excerpts showing where the link appears.

    interface BacklinkHit {
        count: number;
        link_kind: "embed" | "wikilink" | "mixed";
        path: string;
        snippets: string[];
        title: string;
    }
    Index

    Properties

    count: number

    Number of distinct links from this note to the target. Sort key (desc).

    link_kind: "embed" | "wikilink" | "mixed"

    Whether the links are wikilinks, embeds, or a mix.

    path: string

    Vault-relative path of the linking note.

    snippets: string[]

    Up to 2 context excerpts showing the link in situ.

    title: string

    .md-stripped basename for display.