Eventjet GraphQL API documentation

checkEmail

Checks if the given email address is likely to have a typo and returns suggestions for the correct email

Example:

query CheckForTypo($email: Email!) {
  checkEmail(email: $email) {
    suggestions
  }
}
query CheckForTypo($email: Email!) {
  checkEmail(email: $email) {
    suggestions
  }
}

If the email address is likely to have a typo, the response will contain a list of suggestions for the correct email address. If the email address is likely correct, the response will contain an empty list.

Example inputs and outputs:

InputSuggestion
john.doe@gnail.comjohn.doe@gmail.com
peter@gmail.copeter@gmail.com

Arguments

ArgumentDescriptionType
emailEmail!

Type

This field resolves to CheckEmailResult, which has the following fields:

FieldDescriptionType
suggestionsSuggested alternative email addresses, if any.[ String ]