OBJECT

Applicant

Applicant

link GraphQL Schema definition

  • type Applicant {
  • id: Int
  • # Creation date of applicant
  • created_at: String
  • # Expiration date of applicant
  • expire_at: String
  • # How many days retention of applicant
  • retention_days: Int
  • # When send the first warning to mantain the data of applicant
  • first_warning_date: String
  • # If the first warning was send
  • first_warning_done: Boolean
  • # When send the second warning to mantain the data of applicant
  • second_warning_date: String
  • # IF the second warning was send
  • second_warning_done: Boolean
  • # Last update of the Applicant record
  • updated_at: String
  • # First name of the applicant
  • first_name: String
  • # Last name of the applicant
  • last_name: String
  • # Email of the applicant
  • email: String
  • # Data of the last custom recall executed
  • last_custom_recall: String
  • # If the applicant requested the deletion or not
  • requested_deletion: Boolean
  • # All the ApplicationNotes associated with all of the Application of the Applicant
  • notes: [ApplicationNote]
  • # List of applicant fields
  • fields: [ApplicantFieldInput]
  • # List of applicant attachments
  • attachments: [ApplicantAttachment]
  • }