@squidcloud/client
    Preparing search index...

    Interface KnowledgeBaseGraphTopic

    A topic (theme) node of the graph's concept layer, as referenced by KnowledgeBaseGraphNode.topicPath.

    interface KnowledgeBaseGraphTopic {
        docCount?: number;
        id: string;
        level: number;
        name: string;
        parentId?: string;
    }
    Index

    Properties

    docCount?: number

    Documents under the topic, when tracked.

    id: string

    Topic nodeId (matches topicPath entries). Churns on rebuild — not a persistable handle.

    level: number

    Hierarchy level: 0 = leaf tier, higher = coarser tiers.

    name: string

    Topic display name. Re-resolves by name across rebuilds.

    parentId?: string

    Parent topic nodeId, when the topic sits under a coarser tier.