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

    Interface GraphQLLineItemQuantityBelowLimitError

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

    interface GraphQLLineItemQuantityBelowLimitError {
        code: "LineItemQuantityBelowLimit";
        lineItem?: string;
        minCartQuantity: number;
        quantity: number;
        [key: string]: any;
    }

    Hierarchy (View Summary)

    Indexable

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

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

    lineItem?: string

    Reference to the Line Item that caused the error.

    minCartQuantity: number

    The minimum quantity required for this Line Item.

    quantity: number

    The quantity that was requested.