OBJECT

UserInduction

An induction linked to a user.

link GraphQL Schema definition

  • type UserInduction {
  • # The unique ID.
  • id: Int!
  • # The user associated to the user induction
  • user: User
  • # The induction associated to the user induction
  • induction: Induction
  • # The time the user induction was created.
  • created_time: DateTime!
  • # The date the user induction will expiry
  • expiry_time: DateTimeExpression
  • # The attachment url.
  • attachment: String
  • # The status of the induction.
  • status: ExpiryStatuses!
  • # The date the user induction was issued
  • issue_date: DateTimeExpression
  • # True if this user induction is active and visible in the UI, false otherwise.
  • is_active: Boolean!
  • # True if this user induction is disabled. Disabled inductions don't contribute to
  • # compliance checks or alerts
  • is_disabled: Boolean!
  • }