OBJECT

UserSkill

The skills attached to a user

link GraphQL Schema definition

  • type UserSkill {
  • # The unique ID.
  • id: Int!
  • # The user associated to the user skill
  • user: User
  • # The skill associated to the user skill
  • skill: Skill
  • # The time the user skill was created.
  • created_time: DateTime!
  • }