freegpt4-duplicated / gpt4free /quora /graphql /SignupWithVerificationCodeMutation.graphql
pruth23's picture
Duplicate from pruth23/freegpt4
2f013d1
raw
history blame contribute delete
308 Bytes
mutation SignupWithVerificationCodeMutation(
$verificationCode: String!
$emailAddress: String
$phoneNumber: String
) {
signupWithVerificationCode(
verificationCode: $verificationCode
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}