mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
13 lines
199 B
TypeScript
13 lines
199 B
TypeScript
export const getCustomerQuery = /* GraphQL */ `
|
|
query getCustomer {
|
|
customer {
|
|
id
|
|
firstName
|
|
lastName
|
|
displayName
|
|
email
|
|
}
|
|
}
|
|
`
|
|
export default getCustomerQuery
|