@squidcloud/client
    Preparing search index...

    Interface KnowledgeBaseGraphQueryMatch

    One node matched by a graph query (resolve, and the anchors of other ops).

    interface KnowledgeBaseGraphQueryMatch {
        description?: string;
        docCount?: number;
        facetKey?: string;
        id?: string;
        kind: "document" | "entity" | "topic" | "facetRoot" | "facetValue";
        name: string;
    }
    Index

    Properties

    description?: string

    Node description (may be empty for facet leaves).

    docCount?: number

    Documents under the node, where tracked (topics and facet nodes).

    facetKey?: string

    The metadata field a facet node belongs to.

    id?: string

    Persistable handle, present only where one exists: facet nodeIds (stable across rebuilds) and document contextIds. Topic and entity refs re-resolve by name — their internal ids are omitted.

    kind: "document" | "entity" | "topic" | "facetRoot" | "facetValue"

    What kind of node matched.

    name: string

    Display name (document title, entity/topic/facet name).