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

13 lines
263 B
GraphQL

mutation SendVerificationCodeForLoginMutation(
$emailAddress: String
$phoneNumber: String
) {
sendVerificationCode(
verificationReason: login
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}