OBJECT

WorkExperience

link GraphQL Schema definition

  • type WorkExperience implements Node {
  • id: ID!
  • # The institution of the work experience.
  • institution: String!
  • # The specialty of the work experience.
  • specialty: String!
  • # The title of the work experience.
  • title: String!
  • # The employment type of the work experience.
  • employment: WorkExperienceEmployment!
  • # The start date of the work experience.
  • startDate: Time
  • # The end date of the work experience.
  • endDate: Time
  • # The city of the work experience.
  • city: String!
  • # The state of the work experience.
  • state: String!
  • # The user that the work experience is for.
  • user: User
  • # Optional reference to the employer Institution.
  • employer: Institution
  • }