mirror of
https://github.com/vercel/commerce.git
synced 2025-05-12 20:57:51 +00:00
15 lines
261 B
TypeScript
15 lines
261 B
TypeScript
//https://shopify.dev/docs/api/customer/2024-01/queries/customer
|
|
export const getCustomerQuery = /* GraphQL */ `
|
|
query customer {
|
|
customer {
|
|
id
|
|
emailAddress {
|
|
emailAddress
|
|
}
|
|
firstName
|
|
lastName
|
|
tags
|
|
}
|
|
}
|
|
`;
|