blob: 723b1f44ba4cb51196f35b6d0a4deddff9bf187f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
mutation LoginWithVerificationCodeMutation(
$verificationCode: String!
$emailAddress: String
$phoneNumber: String
) {
loginWithVerificationCode(
verificationCode: $verificationCode
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}
|