@squidcloud/client
    Preparing search index...

    Interface KnowledgeBaseGraphQueryPath

    A pathBetween answer. Two-tier: an entity path when one exists (explanatory — the chain of typed relationships), else concept/topic co-membership labeled thematic (the refs share concepts but no entity chain connects them).

    interface KnowledgeBaseGraphQueryPath {
        sharedConcepts?: string[];
        steps?: { from: string; to: string; type: string }[];
        tier: "entity" | "thematic";
    }
    Index

    Properties

    sharedConcepts?: string[]

    Thematic tier: names of concepts both refs sit under.

    steps?: { from: string; to: string; type: string }[]

    Entity tier: the relationship chain, in order.

    tier: "entity" | "thematic"

    Which tier answered: 'entity' (relationship chain) or 'thematic' (shared concepts only).