OBJECT

EmailVerificationAttempt

link GraphQL Schema definition

  • type EmailVerificationAttempt implements Node {
  • id: ID!
  • # The code that was entered (for audit purposes)
  • codeEntered: String!
  • # Whether this attempt was successful
  • success: Boolean!
  • # IP address of the requester
  • ipAddress: String
  • attemptedAt: Time!
  • verificationRequest: EmailVerificationRequest!
  • }