import { CartLine } from '@daffodil/driver/shopify'
Represents information about the merchandise in the cart.
type CartLine = BaseCartLine & Node & {
__typename?: 'CartLine';
attribute?: Maybe<Attribute>;
attributes: Array<Attribute>;
cost: CartLineCost;
discountAllocations: Array<CartDiscountAllocation>;
estimatedCost: CartLineEstimatedCost;
id: Scalars['ID']['output'];
merchandise: Merchandise;
quantity: Scalars['Int']['output'];
sellingPlanAllocation?: Maybe<SellingPlanAllocation>;
}