userUpdate

Graphql fields and variables for the userUpdate mutation

Update a user

Scope required: security:write

For a complete list of input attributes see the UserAttributes type

mutation userUpdate ($id: ID!, $attributes: UserAttributes!) {
  userUpdate (id: $id, attributes: $attributes) {
      errors
      user {
        allowLoginViaEmailLink
        createdAt
        email
        enabled
        entityId
        firstName
        fullName
        groupId
        id
        imageUrl
        lastLogin
        lastName
        managerUserId
        name
        roleId
        title
        updatedAt
        uuid
      }
  }
}

Arguments

Name
Type
Description

id

ID

attributes

Response

Name
Type
Description

errors

List (String)

user

Last updated

Was this helpful?