mirror of
https://github.com/vercel/commerce.git
synced 2025-07-23 04:36:49 +00:00
16 lines
348 B
TypeScript
16 lines
348 B
TypeScript
export const userInfoQuery = /* GraphQL */ `
|
|
query activeCustomer{
|
|
activeCustomer{
|
|
emailAddress
|
|
addresses{
|
|
name:fullName
|
|
address:streetLine1
|
|
city
|
|
state:province
|
|
postalCode
|
|
phoneNumber
|
|
}
|
|
}
|
|
}
|
|
`
|