twoFactorMethodInitiateAuthentication.graphql 333 B

12345678910111213141516
  1. mutation twoFactorMethodInitiateAuthentication(
  2. $login: String!
  3. $password: String!
  4. $twoFactorMethod: EnumTwoFactorAuthenticationMethod!
  5. ) {
  6. twoFactorMethodInitiateAuthentication(
  7. login: $login
  8. password: $password
  9. twoFactorMethod: $twoFactorMethod
  10. ) {
  11. initiationData
  12. errors {
  13. ...errors
  14. }
  15. }
  16. }