Member Junction
    Preparing search index...

    Outcome of a within-batch identity pass.

    interface BatchIdentityResult<T> {
        Collapsed: number;
        Records: T[];
        SampleIDs: string[];
    }

    Type Parameters

    • T
    Index

    Properties

    Collapsed: number

    How many records were dropped as repeats of an identity already in this batch.

    Records: T[]

    The batch with duplicate identities collapsed, original order preserved.

    SampleIDs: string[]

    Identities that appeared more than once, capped for reporting. Sample only — a batch with thousands of repeats must not put thousands of ids into a run event.