@squidcloud/client
    Preparing search index...

    Interface UpsertContextStatusSuccess

    Status of an individual context item after successfully upserting it.

    interface UpsertContextStatusSuccess {
        contextId: string;
        graphIndexingSkipped?: boolean;
        name: string;
        status: "success";
    }

    Hierarchy (View Summary)

    Index
    contextId: string

    The unique identifier of the context item.

    graphIndexingSkipped?: boolean

    Set when the context was stored and is fully searchable (vector/keyword), but was NOT graph-indexed because the knowledge base is over its per-KB graph chunk cap. Only GraphRAG coverage is absent; surfaced so bulk operations can report which contexts fell outside the graph.

    name: string

    The name of the context item, typically the title or filename.

    status: "success"

    Whether the context upsert was successful or got an error.