File size: 306 Bytes
1396122
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mutation LoginWithVerificationCodeMutation(
    $verificationCode: String!
    $emailAddress: String
    $phoneNumber: String
) {
    loginWithVerificationCode(
        verificationCode: $verificationCode
        emailAddress: $emailAddress
        phoneNumber: $phoneNumber
    ) {
        status
    }
}