AccountUpdate
Updates the account of the logged-in user.
Requires one of following set of permissions: AUTHENTICATED_USER or AUTHENTICATED_APP + IMPERSONATE_USER.
Triggers the following webhook events:
- CUSTOMER_UPDATED (async): A customer account was updated.
- CUSTOMER_METADATA_UPDATED (async): Optionally called when customer's metadata was updated.
type AccountUpdate {
accountErrors: [AccountError!]! @deprecated
errors: [AccountError!]!
user: User
}
Fields
AccountUpdate.accountErrors
● [AccountError!]!
deprecated non-null object users
DEPRECATEDThis field will be removed in Saleor 4.0. Use
errors
field instead.
AccountUpdate.errors
● [AccountError!]!
non-null object users
AccountUpdate.user
● User
object users
Returned By
accountUpdate
mutation