chatgpt-plugin/utils/poe/graphql/SendVerificationCodeForLoginMutation.graphql
2023-04-15 21:00:34 +08:00

12 lines
263 B
GraphQL

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