gpt_demo / g4f /.v1 /gpt4free /quora /graphql /SignupWithVerificationCodeMutation.graphql
starsaround's picture
Upload 183 files
f4b4235
raw
history blame contribute delete
308 Bytes
mutation SignupWithVerificationCodeMutation(
$verificationCode: String!
$emailAddress: String
$phoneNumber: String
) {
signupWithVerificationCode(
verificationCode: $verificationCode
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}