mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 20:26:49 +00:00
14 lines
323 B
TypeScript
14 lines
323 B
TypeScript
export const updateCustomer = /* GraphQL */ `
|
|
mutation updateCustomer($input: UpdateCustomerInput!){
|
|
updateCustomer(input:$input){
|
|
__typename
|
|
...on Customer{
|
|
id
|
|
firstName
|
|
lastName
|
|
phoneNumber
|
|
}
|
|
}
|
|
}
|
|
`
|