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

14 lines
306 B
GraphQL

mutation LoginWithVerificationCodeMutation(
$verificationCode: String!
$emailAddress: String
$phoneNumber: String
) {
loginWithVerificationCode(
verificationCode: $verificationCode
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}