@gradientedge/commercetools-utils
    Preparing search index...

    Interface BulkOperationMaxItemsExceededError

    Returned when a bulk request contains more items than the allowed maximum.

    Reduce the number of items in the request to at most `limit` and retry.
    
    interface BulkOperationMaxItemsExceededError {
        code: "BulkOperationMaxItemsExceeded";
        limit: number;
        message: string;
        provided: number;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: any
    Index
    code: "BulkOperationMaxItemsExceeded"

    Error identifier.

    limit: number

    Maximum number of items allowed in a single bulk request.

    message: string

    "The bulk request exceeds the maximum allowed items of $limit."

    provided: number

    Number of items provided in the request.