GitHub

CheckoutLineItemsArgs

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.

import { CheckoutLineItemsArgs } from '@daffodil/driver/shopify'
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']>;
}
Type Options
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']>; }