OBJECT

UserAccountHealth

Groups users account health information around security of their account.

link GraphQL Schema definition

1type UserAccountHealth {
2
3# Is the user required to reset their password.
4isPasswordResetRequired: Boolean!
5
6# Is the users email address verified.
7isVerifiedEmail: Boolean!
8
9# Current status of the users password.
10passwordStatus: PasswordStatus!
11
12# The list of Two factor Methods the user has registered with.
13# Empty list means the user does not have two factor.
14twoFactorMethods: [TwoFactorMethod!]!
15
16}