Port poe messaging to JS

This commit is contained in:
SillyLossy
2023-04-03 22:10:58 +03:00
parent 03691d08e2
commit e3419403a6
34 changed files with 1222 additions and 2 deletions

View File

@ -0,0 +1,12 @@
mutation SendVerificationCodeForLoginMutation(
$emailAddress: String
$phoneNumber: String
) {
sendVerificationCode(
verificationReason: login
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}