-
Notifications
You must be signed in to change notification settings - Fork 371
Closed
Labels
status: wontfixThis will not be worked onThis will not be worked on
Description
Example DSL for query and mutation.
// reset password
query("resetPassword") {
description = "Generates a new password and send via email."
resolver { code: String, loginLink: String ->
userUseCase.resetPassword(code, loginLink)
}
}
// forgot password
mutation("forgotPassword") {
description = "Generates a reset password link with code and send via email."
resolver { emailOrUsername: String, resetPasswordLink: String ->
userUseCase.forgotPassword(emailOrUsername, resetPasswordLink)
}
}Metadata
Metadata
Assignees
Labels
status: wontfixThis will not be worked onThis will not be worked on