Skip to main content

CreateUserInput

Provides the fields and values to use when creating a user.

input CreateUserInput {
firstName: String
lastName: String
email: String!
position: String
password: String
}

Fields

CreateUserInput.firstName ● String scalar

The user's first name.

CreateUserInput.lastName ● String scalar

The user's last name.

CreateUserInput.email ● String! non-null scalar

The user's email address.

CreateUserInput.position ● String scalar

The user's position.

CreateUserInput.password ● String scalar

The user's password. A string which must be 12–30 characters, include a number, a symbol, a lower and an upper case letter.

Member of

createUser mutation