mirror of
https://github.com/vercel/commerce.git
synced 2025-04-25 12:27:50 +00:00
11 lines
168 B
TypeScript
11 lines
168 B
TypeScript
export const activeCustomerQuery = /* GraphQL */ `
|
|
query activeCustomer {
|
|
activeCustomer {
|
|
id
|
|
firstName
|
|
lastName
|
|
emailAddress
|
|
}
|
|
}
|
|
`
|