Module: Static::CreateCustomMFA

Defined in:
lib/static.rb

Constant Summary collapse

Name =
"createCustomMFA"
Query =
<<-EOS
  mutation createCustomMFA($userIdInMiniLogin: String!, $userPoolId: String!, $name: String!, $secret: String!, $remark: String){
  createCustomMFA(userIdInMiniLogin: $userIdInMiniLogin, userPoolId: $userPoolId, name: $name, secret: $secret, remark: $remark){
      _id
      userIdInMiniLogin
      userPoolId{
          _id
          usersCount
          logo
          emailVerifiedDefault
          sendWelcomeEmail
          registerDisabled
          showWXMPQRCode
          useMiniLogin
          useSelfWxapp
          allowedOrigins
          name
          secret
          token
          descriptions
          jwtExpired
          createdAt
          isDeleted
          enableEmail
      }
      remark
      name
      secret
  }
}
EOS