Skip to content
Last update: April 11, 2024

updateUser mutation

This mutation updates a user information.

Arguments

The InputUpdateUserType! represents the input object for creating a contact.

Field Description
applicationUser InputUpdateApplicationUserType The input data for updating an application user, which includes the user's details.

Possible returns

Possible return Description
IdentityResultType The result of an identity-related operation.
1
2
3
4
5
mutation updateUser($command: InputUpdateUserType!) {
  updateUser(command: $command) {
    succeeded
  }
}
{
"command": {
    "id": "916abee5-1b4d-4f1f-80f2-8be0a55cf011",
    "userName": "graphqlTestUserName2",
    "userType": "Customer",
    "roles": [],
    "securityStamp": "",
    "email": "[email protected]"
    "storeId": "B2B-Store"
  }
}