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