GitHub

SellingPlan

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

Represents how products and variants can be sold and purchased.

type SellingPlan = {
    __typename?: 'SellingPlan';
    checkoutCharge: SellingPlanCheckoutCharge;
    description?: Maybe<Scalars['String']['output']>;
    id: Scalars['ID']['output'];
    name: Scalars['String']['output'];
    options: Array<SellingPlanOption>;
    priceAdjustments: Array<SellingPlanPriceAdjustment>;
    recurringDeliveries: Scalars['Boolean']['output'];
}