GitHub

CartCost

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

The costs that the buyer will pay at checkout. The cart cost uses CartBuyerIdentity to determine international pricing.

type CartCost = {
    __typename?: 'CartCost';
    checkoutChargeAmount: MoneyV2;
    subtotalAmount: MoneyV2;
    subtotalAmountEstimated: Scalars['Boolean']['output'];
    totalAmount: MoneyV2;
    totalAmountEstimated: Scalars['Boolean']['output'];
    totalDutyAmount?: Maybe<MoneyV2>;
    totalDutyAmountEstimated: Scalars['Boolean']['output'];
    totalTaxAmount?: Maybe<MoneyV2>;
    totalTaxAmountEstimated: Scalars['Boolean']['output'];
}