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