SendVerificationCodeForLoginMutation.graphql 263 B

123456789101112
  1. mutation SendVerificationCodeForLoginMutation(
  2. $emailAddress: String
  3. $phoneNumber: String
  4. ) {
  5. sendVerificationCode(
  6. verificationReason: login
  7. emailAddress: $emailAddress
  8. phoneNumber: $phoneNumber
  9. ) {
  10. status
  11. }
  12. }
粤ICP备19079148号