import { ShopifyCustomerOrdersArgs } from '@daffodil/driver/shopify'
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.
interface ShopifyCustomerOrdersArgs {
after: string
before: string
first: number
last: number
query: string
reverse: boolean
sortKey: ShopifyOrderSortKeys
}