GitHub

CustomerOrdersArgs

A customer represents a customer account with the shop. Customer accounts store contact information for the customer, saving logged-in customers the trouble of having to provide it at every checkout.

import { CustomerOrdersArgs } from '@daffodil/driver/shopify'
type CustomerOrdersArgs = {
    after?: InputMaybe<Scalars['String']['input']>;
    before?: InputMaybe<Scalars['String']['input']>;
    first?: InputMaybe<Scalars['Int']['input']>;
    last?: InputMaybe<Scalars['Int']['input']>;
    query?: InputMaybe<Scalars['String']['input']>;
    reverse?: InputMaybe<Scalars['Boolean']['input']>;
    sortKey?: InputMaybe<OrderSortKeys>;
}
Type Options
CustomerOrdersArgs { after?: InputMaybe<Scalars['String']['input']>; before?: InputMaybe<Scalars['String']['input']>; first?: InputMaybe<Scalars['Int']['input']>; last?: InputMaybe<Scalars['Int']['input']>; query?: InputMaybe<Scalars['String']['input']>; reverse?: InputMaybe<Scalars['Boolean']['input']>; sortKey?: InputMaybe<OrderSortKeys>; }