1
0
Fork 0
GPT4FREE/gpt4free/quora/graphql/LoginWithVerificationCodeMutation.graphql

14 lines
306 B
GraphQL
Raw Normal View History

2023-03-29 20:10:42 +00:00
mutation LoginWithVerificationCodeMutation(
$verificationCode: String!
$emailAddress: String
$phoneNumber: String
) {
loginWithVerificationCode(
verificationCode: $verificationCode
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}