mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
18 lines
280 B
TypeScript
18 lines
280 B
TypeScript
export const activeCustomerQuery = /* GraphQL */ `
|
|
query activeCustomer {
|
|
activeCustomer {
|
|
id
|
|
firstName
|
|
lastName
|
|
emailAddress
|
|
phoneNumber
|
|
addresses{
|
|
streetLine1
|
|
city
|
|
province
|
|
postalCode
|
|
}
|
|
}
|
|
}
|
|
`
|