Create User
When the user is created and you do not set the email verified to true. A verification email will be send to the user. The user will not be able to sign in without the email being verified.
input : { Email: String! Password: String! FirstName: String LastName: String EmailVerified: Boolean } mutation CreateUser($input: CreateUserInput!) { createUser(input: $input) { ID Email EmailVerified FirstName LastName ProfilePictureURL CreatedAt UpdatedAt } } { "data": { "createUser": { "ID": "user_01J5YZZMP43T2RHD0P1P04N155", "Email": "test@gmail.com", "EmailVerified": false, "FirstName": "", "LastName": "", "ProfilePictureURL": "", "CreatedAt": "2024-08-23T06:50:03.288Z", "UpdatedAt": "2024-08-23T06:50:03.288Z" } } }