CartDeliveryGroupsArgs
A cart represents the merchandise that a buyer intends to purchase, and the estimated cost associated with the cart. Learn how to interact with a cart during a customer's session.
import { CartDeliveryGroupsArgs } from '@daffodil/driver/shopify'
type CartDeliveryGroupsArgs = {
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 |
---|---|
CartDeliveryGroupsArgs | {
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']>;
} |