OBJECT

Skill

A single skill

link GraphQL Schema definition

  • type Skill {
  • # The unique skill ID.
  • id: Int!
  • # The skill name.
  • name: String!
  • # The sub skill granted by this skill
  • sub_skill: Skill
  • # The competencies required for this skill
  • competencies: [Competency]
  • # The skill ids which include this skill via a subskill tree.
  • parent_ids: [Int]
  • }