freegpt-webui / g4f /.v1 /gpt4free /quora /graphql /SignupWithVerificationCodeMutation.graphql
monra's picture
Adds all providers from the original API
d4adf88
raw
history blame
308 Bytes
mutation SignupWithVerificationCodeMutation(
$verificationCode: String!
$emailAddress: String
$phoneNumber: String
) {
signupWithVerificationCode(
verificationCode: $verificationCode
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}