mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
12 lines
223 B
TypeScript
12 lines
223 B
TypeScript
export const getCustomerAccountQuery = /* GraphQL */`
|
|
query getUser {
|
|
customerAccount:getCurrentAccount {
|
|
id
|
|
firstName
|
|
lastName
|
|
emailAddress
|
|
userName
|
|
isAnonymous
|
|
}
|
|
}
|
|
` |