1
0
Fork 0
GPT4FREE/openai_rev/quora/graphql/SendVerificationCodeForLoginMutation.graphql

13 lines
263 B
GraphQL
Raw Normal View History

2023-03-29 20:10:42 +00:00
mutation SendVerificationCodeForLoginMutation(
$emailAddress: String
$phoneNumber: String
) {
sendVerificationCode(
verificationReason: login
emailAddress: $emailAddress
phoneNumber: $phoneNumber
) {
status
}
}