import { ShopifyCustomerOrdersArgs } from '@daffodil/driver/shopify'
A customer account with the shop. Includes data such as contact information, addresses and marketing preferences for logged-in customers, so they don't have to provide these details at every checkout.
Access the customer through the customer query using a customer access token obtained from the customerAccessTokenCreate mutation.
The object implements the HasMetafields interface, enabling retrieval of custom data associated with the customer.
interface ShopifyCustomerOrdersArgs {
after: string
before: string
first: number
last: number
query: string
reverse: boolean
sortKey: ShopifyOrderSortKeys
}