GitHub

CheckoutLineItemsArgs

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

A container for all the information required to checkout items and pay.

The Storefront GraphQL Checkout API is deprecated and will be removed in a future version. Please see https://shopify.dev/changelog/deprecation-of-checkout-apis for more information.

type CheckoutLineItemsArgs = {
    after?: InputMaybe<Scalars['String']['input']>;
    before?: InputMaybe<Scalars['String']['input']>;
    first?: InputMaybe<Scalars['Int']['input']>;
    last?: InputMaybe<Scalars['Int']['input']>;
    reverse?: InputMaybe<Scalars['Boolean']['input']>;
}