Interface BulkEnqueueOutcome

    Aggregate result of enqueueMany. Per-job ids are not returned — use single enqueue calls when you need them.

    interface BulkEnqueueOutcome {
        inserted: number;
        skipped: number;
    }
    Index

    Properties

    Properties

    inserted: number

    Rows newly inserted.

    skipped: number

    Rows skipped due to unique_key conflicts.