Entity
    Preparing search index...

    Interface EntityMetricsCountEvent

    Event about a single call to an EntityLoader count method. Counts return a number rather than entities, so they are reported separately from loads.

    interface EntityMetricsCountEvent {
        count: number;
        duration: number;
        entityClassName: string;
        isInTransaction: boolean;
        type: EntityMetricsCountType;
    }
    Index
    count: number

    The number returned by the count query. No entities are loaded for a count.

    duration: number

    Total duration of this count query.

    entityClassName: string

    Class name of the Entity being counted.

    isInTransaction: boolean

    Whether this count is within a transaction.

    EntityMetricsCountType for this count.