@squidcloud/client
    Preparing search index...

    Interface KnowledgeBaseGraphTopicEdge

    An aggregated relationship edge between two leaf topics: how many entity relationships cross between their member entities. Undirected (one entry per pair) and pruned to each topic's strongest neighbors, so weak long-tail links may be absent. Ids churn on rebuild, like KnowledgeBaseGraphTopic.id.

    interface KnowledgeBaseGraphTopicEdge {
        source: string;
        target: string;
        weight: number;
    }
    Index

    Properties

    Properties

    source: string

    One endpoint's topic nodeId.

    target: string

    The other endpoint's topic nodeId.

    weight: number

    Number of entity relationships crossing between the two topics.