@squidcloud/client
    Preparing search index...

    Interface KnowledgeBaseGraphFacetStatus

    One facet tree in a graph status response: the metadata field it is built from and its value leaves (most-populated first, capped — compare values.length against valueCount for truncation).

    interface KnowledgeBaseGraphFacetStatus {
        docCount: number;
        facetKey: string;
        name: string;
        valueCount: number;
        values: KnowledgeBaseGraphFacetValueStatus[];
    }
    Index

    Properties

    docCount: number

    Documents carrying any value of this facet.

    facetKey: string

    The metadata field the facet is built from.

    name: string

    Display name of the facet root.

    valueCount: number

    Total facet-value leaves (may exceed values.length — the list is capped).

    The facet's value leaves.