INPUT_OBJECT
UpdatePasswordPolicyMutationInput
The input object that defines the fields for the updatePasswordPolicy mutation.
link GraphQL Schema definition
- input UpdatePasswordPolicyMutationInput {
- # The minimum length a password must be.
- Int :
- # Does a password require both upper and lower case characters?
- Boolean :
- # Does a password require at least one special (non alpha-numeric) character?
- Boolean :
- # Must a password be alpha-numeric (contain at least one letter and one number) or
- # can it have any combination of characters?
- Boolean :
- # A score for the zxcvbn password strength estimation library that this password
- # must match. 0 allows all passwords, 4 requires a very strong password. See
- # https://github.com/dropbox/zxcvbn for details.
- Int :
- }