Skip to content

createUserWithPassword

Creates a new user with a set password.

Arguments

Argument Type Description
input (required) CreateUserWithPasswordInput! User credentials required to create a new user.

Returns

String!

Sample

mutation CreateUserWithPassword($input: CreateUserWithPasswordInput!) {
  createUserWithPassword(input: $input)
}
{
  "input": {}
}
{
  "data": {
    "createUserWithPassword": "example-string"
  }
}