gpt4free-original/gpt4free/quora/graphql/SignupWithVerificationCodeM...

14 行
308 B
GraphQL

mutation SignupWithVerificationCodeMutation(
$verificationCode: String!
$emailAddress: String
$phoneNumber: String
) {
signupWithVerificationCode(
verificationCode: $verificationCode
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}