mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-16 13:27:08 +00:00
12 lines
263 B
GraphQL
12 lines
263 B
GraphQL
mutation SendVerificationCodeForLoginMutation(
|
|
$emailAddress: String
|
|
$phoneNumber: String
|
|
) {
|
|
sendVerificationCode(
|
|
verificationReason: login
|
|
emailAddress: $emailAddress
|
|
phoneNumber: $phoneNumber
|
|
) {
|
|
status
|
|
}
|
|
}
|