INPUT_OBJECT
EditUserInput
Input type for editUser mutation.
link GraphQL Schema definition
- input EditUserInput {
- # The id of the user to be edited.
- String! :
- # The new first name for the user.
- String :
- # The new last name for the user.
- String :
- # The new primary email address of the user. If changed and removeAdditionalEmails
- # is false, the current primary email will become an additional email.
- String :
- # User identifier external to Pluralsight, often used for SSO integrations.
- String :
- # If true, all additional emails will be deleted for the user. Defaults to false.
- Boolean :
- # The new note for the user.
- String :
- }