summaryrefslogtreecommitdiffstats
path: root/gpt4free/quora/graphql/LoginWithVerificationCodeMutation.graphql
diff options
context:
space:
mode:
Diffstat (limited to 'gpt4free/quora/graphql/LoginWithVerificationCodeMutation.graphql')
-rw-r--r--gpt4free/quora/graphql/LoginWithVerificationCodeMutation.graphql13
1 files changed, 13 insertions, 0 deletions
diff --git a/gpt4free/quora/graphql/LoginWithVerificationCodeMutation.graphql b/gpt4free/quora/graphql/LoginWithVerificationCodeMutation.graphql
new file mode 100644
index 00000000..723b1f44
--- /dev/null
+++ b/gpt4free/quora/graphql/LoginWithVerificationCodeMutation.graphql
@@ -0,0 +1,13 @@
+mutation LoginWithVerificationCodeMutation(
+ $verificationCode: String!
+ $emailAddress: String
+ $phoneNumber: String
+) {
+ loginWithVerificationCode(
+ verificationCode: $verificationCode
+ emailAddress: $emailAddress
+ phoneNumber: $phoneNumber
+ ) {
+ status
+ }
+}