mirror of
https://github.com/vercel/commerce.git
synced 2025-06-19 21:51:21 +00:00
13 lines
192 B
TypeScript
13 lines
192 B
TypeScript
export const getCustomerQuery = /* GraphQL */ `
|
|
query getCustomer {
|
|
me {
|
|
id
|
|
email
|
|
firstName
|
|
lastName
|
|
dateJoined
|
|
}
|
|
}
|
|
`
|
|
export default getCustomerQuery
|