mirror of
https://github.com/vercel/commerce.git
synced 2025-07-26 19:51:23 +00:00
feat: get-edit-user-info
This commit is contained in:
@@ -5,6 +5,13 @@ export const activeCustomerQuery = /* GraphQL */ `
|
||||
firstName
|
||||
lastName
|
||||
emailAddress
|
||||
phoneNumber
|
||||
addresses{
|
||||
streetLine1
|
||||
city
|
||||
province
|
||||
postalCode
|
||||
}
|
||||
}
|
||||
}
|
||||
`
|
||||
|
@@ -1,14 +1,15 @@
|
||||
export const userInfoQuery = /* GraphQL */ `
|
||||
query activeCustomer{
|
||||
activeCustomer{
|
||||
lastName
|
||||
firstName
|
||||
emailAddress
|
||||
phoneNumber
|
||||
addresses{
|
||||
name:fullName
|
||||
address:streetLine1
|
||||
streetLine1
|
||||
city
|
||||
state:province
|
||||
province
|
||||
postalCode
|
||||
phoneNumber
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user