LoginWithVerificationCodeMutation.graphql 306 B

12345678910111213
  1. mutation LoginWithVerificationCodeMutation(
  2. $verificationCode: String!
  3. $emailAddress: String
  4. $phoneNumber: String
  5. ) {
  6. loginWithVerificationCode(
  7. verificationCode: $verificationCode
  8. emailAddress: $emailAddress
  9. phoneNumber: $phoneNumber
  10. ) {
  11. status
  12. }
  13. }
粤ICP备19079148号