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

    Interface GraphQLBulkOperationMaxItemsExceededError

    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 GraphQLBulkOperationMaxItemsExceededError {
        code: "BulkOperationMaxItemsExceeded";
        limit: number;
        provided: number;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

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

    One of the error codes that is listed on the Errors page.

    limit: number

    Maximum number of items allowed in a single bulk request.

    provided: number

    Number of items provided in the request.