login.graphql 289 B

123456789101112131415
  1. mutation login($input: LoginInput!) {
  2. login(input: $input) {
  3. session {
  4. ...session
  5. }
  6. errors {
  7. ...errors
  8. }
  9. twoFactorRequired {
  10. availableTwoFactorAuthenticationMethods
  11. defaultTwoFactorAuthenticationMethod
  12. recoveryCodesAvailable
  13. }
  14. }
  15. }