AccountRegisterInput
Fields required to create a user.
input AccountRegisterInput {
firstName: String
lastName: String
languageCode: LanguageCodeEnum
email: String!
password: String!
redirectUrl: String
metadata: [MetadataInput!]
channel: String
}
Fields
AccountRegisterInput.firstName
● String
scalar miscellaneous
Given name.
AccountRegisterInput.lastName
● String
scalar miscellaneous
Family name.
AccountRegisterInput.languageCode
● LanguageCodeEnum
enum miscellaneous
User language code.
AccountRegisterInput.email
● String!
non-null scalar miscellaneous
The email address of the user.
AccountRegisterInput.password
● String!
non-null scalar miscellaneous
Password.
AccountRegisterInput.redirectUrl
● String
scalar miscellaneous
Base of frontend URL that will be needed to create confirmation URL. Required when account confirmation is enabled.
AccountRegisterInput.metadata
● [MetadataInput!]
list input miscellaneous
User public metadata.
AccountRegisterInput.channel
● String
scalar miscellaneous
Slug of a channel which will be used to notify users. Optional when only one channel exists.
Member Of
accountRegister
mutation