refactor: services

This commit is contained in:
josc146
2023-04-27 20:31:53 +08:00
parent 9b157ff01e
commit 17778f5a14
48 changed files with 272 additions and 269 deletions
@@ -0,0 +1,12 @@
mutation SendVerificationCodeForLoginMutation(
$emailAddress: String
$phoneNumber: String
) {
sendVerificationCode(
verificationReason: login
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}