13 lines
263 B
GraphQL
13 lines
263 B
GraphQL
mutation SendVerificationCodeForLoginMutation(
|
|
$emailAddress: String
|
|
$phoneNumber: String
|
|
) {
|
|
sendVerificationCode(
|
|
verificationReason: login
|
|
emailAddress: $emailAddress
|
|
phoneNumber: $phoneNumber
|
|
) {
|
|
status
|
|
}
|
|
}
|