UpdateAccountResult
The result of updating an account
type UpdateAccountResult {
success: Boolean!
account: Account
errors: [AccountError!]
}
Fields
UpdateAccountResult.success ● Boolean! non-null scalar
If the update to the account was successful
UpdateAccountResult.account ● Account object
The updated account
UpdateAccountResult.errors ● [AccountError!] list object
Any errors present when updating an account will be returned here
Returned By
updateAccount mutation