AuthMutations
No description
type AuthMutations {
generateState(
domain: String!
nonce: String!
): String
authenticate(
code: String!
state: String!
nonce: String!
maybeToken: String
): String
login(
email: String!
password: String!
captchaToken: String
): String
resetPassword(
email: String!
captchaToken: String
): Unit
setPassword(
email: String!
password: String!
token: String!
captchaToken: String
): EitherListOfStringOrString
}
Fields
AuthMutations.generateState ● String scalar
AuthMutations.generateState.domain●String!non-null scalar
AuthMutations.generateState.nonce ● String! non-null scalar
AuthMutations.authenticate ● String scalar
AuthMutations.authenticate.code●String!non-null scalar
AuthMutations.authenticate.state ● String! non-null scalar
AuthMutations.authenticate.nonce ● String! non-null scalar
AuthMutations.authenticate.maybeToken ● String scalar
AuthMutations.login ● String scalar
AuthMutations.login.email●String!non-null scalar
AuthMutations.login.password ● String! non-null scalar
AuthMutations.login.captchaToken ● String scalar
AuthMutations.resetPassword ● Unit scalar
AuthMutations.resetPassword.email●String!non-null scalar
AuthMutations.resetPassword.captchaToken ● String scalar
AuthMutations.setPassword ● EitherListOfStringOrString object
AuthMutations.setPassword.email●String!non-null scalar
AuthMutations.setPassword.password ● String! non-null scalar
AuthMutations.setPassword.token ● String! non-null scalar
AuthMutations.setPassword.captchaToken ● String scalar
Returned by
auth mutation