Skip to content
Last update: April 11, 2024

validatePassword query

This connection is used to check the validity of a password.

Arguments

Field Description
password String The password to be validated.

Possible returns

Possible return Description
CustomIdentityResultType Outcome of identity-related operations.

Examples

query {
  validatePassword(password: "tew1WEEEEr") {
    succeeded
    errors {
      code
      parameter
      description
    }
  }
}
1
2
3
4
5
6
7
8
{
  "data": {
    "validatePassword": {
      "succeeded": true,
      "errors": []
    }
  }
}