INPUT_OBJECT
CreateUserMutationInput
The input object that defines the fields for the createUser mutation.
link GraphQL Schema definition
- input CreateUserMutationInput {
- # A descriptive name.
- String! :
- # A username, used for authentication.
- String! :
- # Super admins receive all system permissions automatically, regardless of their
- # role. Only a super admin can create another super admin. If you submit this
- # property when you are not a super admin, the mutation will fail.
- Boolean :
- # The ID of a Role.
- Int64Bit :
- # An email address.
- EmailAddress! :
- # A mobile phone number. This will be used to send SMS messages.
- Numeric :
- # The preferred language for this user. If none is set, then the system default
- # will be used. This will affect the interface, as well as communications sent to
- # this user.
- Language :
- # The publicly viewable name of this user.
- String! :
- # Whether or not this is enabled.
- Boolean :
- }