summaryrefslogtreecommitdiffstats
path: root/gpt4free/quora/graphql/SignupWithVerificationCodeMutation.graphql
blob: 06b2826fa40e3166f5fd7f88eb80d59c43b19bf6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
mutation SignupWithVerificationCodeMutation(
    $verificationCode: String!
    $emailAddress: String
    $phoneNumber: String
) {
    signupWithVerificationCode(
        verificationCode: $verificationCode
        emailAddress: $emailAddress
        phoneNumber: $phoneNumber
    ) {
        status
    }
}