UpdateUserDto
No description
input UpdateUserDto {
  firstName: String
  middleName: String
  lastName: String
  gender: Gender
  language: String
  phone: String
  job: String
}
Fields
UpdateUserDto.firstName ● String scalar
First name of the administrative user. Used for personalization and identification in administrative interfaces. Maximum length of 30 characters.
UpdateUserDto.middleName ● String scalar
Middle name or initial of the administrative user. Optional field for complete name representation in formal communications. Maximum length of 20 characters.
UpdateUserDto.lastName ● String scalar
Last name (surname) of the administrative user. Used for formal identification and sorting in administrative listings. Maximum length of 50 characters.
UpdateUserDto.gender ● Gender enum
Gender identity of the administrative user. Used for personalization and demographic reporting where applicable. Supports standard gender classifications with unknown as default for privacy.
UpdateUserDto.language ● String scalar
Preferred language for user interface and communications. Two-letter ISO 639-1 language code that determines the language for system notifications and interface elements. Maximum length of 2 characters.
UpdateUserDto.phone ● String scalar
Contact phone number for the administrative user. Primary phone number for urgent communications and two-factor authentication. Should follow international format with country code. Maximum length of 30 characters.
UpdateUserDto.job ● String scalar
Job title or role description of the administrative user. Professional title that helps identify the user's responsibilities and authority level within the organization. Maximum length of 30 characters.
Member Of
adminUserUpdate  mutation