@squidcloud/client
    Preparing search index...

    Interface KnowledgeBaseGraphResolutionStatus

    Readings the incremental entity-resolution sweep persists on a knowledge base: the dirty backlog it drains across sweeps and the duplicate-name fragmentation it exists to merge.

    interface KnowledgeBaseGraphResolutionStatus {
        backlog: number;
        backlogSampledAt: number;
        duplicateNames?: number;
        duplicateNamesSampledAt?: number;
        lastSweep?: KnowledgeBaseGraphResolutionSweep;
    }
    Index
    backlog: number

    Entities rewritten since the sweep last examined them.

    backlogSampledAt: number

    When backlog was sampled (epoch millis) — the start or end of a sweep.

    duplicateNames?: number

    Entities sharing another entity's significant-name-token signature; absent until a sweep sampled it.

    duplicateNamesSampledAt?: number

    When duplicateNames was sampled (epoch millis).

    The most recent sweep: the bounds it ran under and what it got through; absent until one has run.