1
0
Fork 0
GPT4FREE/openai_rev/quora/graphql/SendVerificationCodeForLoginMutation.graphql
2023-04-28 00:40:43 +05:30

13 lines
263 B
GraphQL

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