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

    Interface GraphQLLineItemQuantityAboveLimitError

    Returned when attempting to create or update a Cart with a Line Item whose quantity exceeds the maxCartQuantity limit defined in the InventoryEntry for that Line Item's SKU.

    interface GraphQLLineItemQuantityAboveLimitError {
        code: "LineItemQuantityAboveLimit";
        lineItem?: string;
        maxCartQuantity: number;
        quantity: number;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

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

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

    lineItem?: string

    Reference to the Line Item that caused the error.

    maxCartQuantity: number

    The maximum quantity allowed for this Line Item.

    quantity: number

    The quantity that was requested.