@shopify/cli
Version:
A CLI tool to build for the Shopify platform
25 lines (24 loc) • 493 B
text/typescript
export const CUSTOMER_UPDATE_MUTATION = `#graphql
# https://shopify.dev/docs/api/customer/latest/mutations/customerUpdate
mutation customerUpdate(
$customer: CustomerUpdateInput!
){
customerUpdate(input: $customer) {
customer {
firstName
lastName
emailAddress {
emailAddress
}
phoneNumber {
phoneNumber
}
}
userErrors {
code
field
message
}
}
}
` as const;