blob: 06b2826fa40e3166f5fd7f88eb80d59c43b19bf6 (
plain) (
tree)
|
|
mutation SignupWithVerificationCodeMutation(
$verificationCode: String!
$emailAddress: String
$phoneNumber: String
) {
signupWithVerificationCode(
verificationCode: $verificationCode
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}
|