1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-20 00:16:59 +00:00
2024-06-20 13:23:02 +03:00

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}
`;