GitHub

ComponentizableCartLine

import { ComponentizableCartLine } from '@daffodil/driver/shopify'

Represents information about the grouped merchandise in the cart.

type ComponentizableCartLine = BaseCartLine & Node & {
    __typename?: 'ComponentizableCartLine';
    attribute?: Maybe<Attribute>;
    attributes: Array<Attribute>;
    cost: CartLineCost;
    discountAllocations: Array<CartDiscountAllocation>;
    estimatedCost: CartLineEstimatedCost;
    id: Scalars['ID']['output'];
    lineComponents: Array<CartLine>;
    merchandise: Merchandise;
    quantity: Scalars['Int']['output'];
    sellingPlanAllocation?: Maybe<SellingPlanAllocation>;
}