OBJECT
UserCompetency
A competency linked to a user.
link GraphQL Schema definition
- type UserCompetency {
- # The unique ID.
- Int! :
- # The user associated to the user competency
- User :
- # The competency associated to the user competency
- Competency :
- # The time the user competency was created.
- DateTime :
- # The date the user competency will expiry
- DateTimeExpression :
- # The attachment url.
- String :
- # The description of the user competency.
- String :
- # The status of the competency.
- ExpiryStatuses! :
- # The date the user competency was issued
- DateTimeExpression :
- # True if this user competency is active. For competencies, the active version is
- # the most recent edit for that competency.
- Boolean! :
- # True if this user competency is disabled. Disabled competencies don't contribute
- # to compliance checks or alerts
- Boolean! :
- }