CreateAuthenticationInput
No description
input CreateAuthenticationInput {
email: String!
password: String
phoneNumber: String
displayName: String
uid: String
claims: CreateAuthenticationClaimsInput
}
Fields
CreateAuthenticationInput.email
● String!
non-null scalar
The email of the user
CreateAuthenticationInput.password
● String
scalar
The password of the user
CreateAuthenticationInput.phoneNumber
● String
scalar
The first name of the user
CreateAuthenticationInput.displayName
● String
scalar
The display name of the user
CreateAuthenticationInput.uid
● String
scalar
Optionally an external ID of the user
CreateAuthenticationInput.claims
● CreateAuthenticationClaimsInput
input
Initial claims to store with the user
Member Of
authenticationCreate
mutation