mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 04:37:51 +00:00
16 lines
365 B
TypeScript
16 lines
365 B
TypeScript
import customerDetailsFragment from '../fragments/customer-details';
|
|
|
|
const customerFragment = `#graphql
|
|
`;
|
|
|
|
// NOTE: https://shopify.dev/docs/api/customer/latest/queries/customer
|
|
export const getCustomerOrdersQuery = `#graphql
|
|
query getCustomerOrdersQuery {
|
|
customer {
|
|
...CustomerDetails
|
|
}
|
|
}
|
|
${customerFragment}
|
|
${customerDetailsFragment}
|
|
`;
|