1
0
Fork 0
GPT4FREE/gpt4free/quora/graphql/SignupWithVerificationCodeMutation.graphql
2023-04-29 14:55:24 +05:30

14 lines
308 B
GraphQL

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