GitHub

OrderDiscountApplicationsArgs

An order is a customer’s completed request to purchase one or more products from a shop. An order is created when a customer completes the checkout process, during which time they provides an email address, billing address and payment information.

import { OrderDiscountApplicationsArgs } from '@daffodil/driver/shopify'
type OrderDiscountApplicationsArgs = {
    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
OrderDiscountApplicationsArgs { 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']>; }