OBJECT

EducationHistory

link GraphQL Schema definition

  • type EducationHistory implements Node {
  • id: ID!
  • # The institution/school name for this education history entry.
  • institution: String!
  • # The degree attained for this education history entry.
  • degree: String
  • # The major for this education history entry.
  • major: String
  • specialty: String
  • startDate: Time
  • endDate: Time
  • type: EducationHistoryType!
  • # Education history for a user.
  • user: User
  • # Optional reference to the school Institution.
  • school: Institution
  • }