Files
chatGPTBox/src/services/clients/poe/graphql/SendVerificationCodeForLoginMutation.graphql
T
2023-04-27 20:31:53 +08:00

13 lines
263 B
GraphQL

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