INPUT_OBJECT

CreateUserWithPasswordInput

Description

CreateUserReq is used to create a new user.

link GraphQL Schema definition

  • input CreateUserWithPasswordInput {
  • # Email for the new user.
  • email: String
  • # Password for the new user.
  • password: String
  • # Specifies whether the user is required to change the password after creation.
  • requirePasswordChange: Boolean
  • # Role IDs to add to the new user.
  • roleIds: [String!]
  • }

link Require by