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