ComponentizableCartLine
Represents information about the grouped merchandise in the cart.
import { ComponentizableCartLine } from '@daffodil/driver/shopify'
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>;
}
Type | Options |
---|---|
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>;
} |