Skip to main content
Version: 3.x

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

Given name.

AccountRegisterInput.lastName ● String scalar

Family name.

AccountRegisterInput.languageCode ● LanguageCodeEnum enum

User language code.

AccountRegisterInput.email ● String! non-null scalar

The email address of the user.

AccountRegisterInput.password ● String! non-null scalar

Password.

AccountRegisterInput.redirectUrl ● String scalar

Base of frontend URL that will be needed to create confirmation URL.

AccountRegisterInput.metadata ● [MetadataInput!] list input

User public metadata.

AccountRegisterInput.channel ● String scalar

Slug of a channel which will be used to notify users. Optional when only one channel exists.

Member of

accountRegister mutation


Was this page helpful?