OBJECT

InterviewerFeedback

link GraphQL Schema definition

1type InterviewerFeedback {
2
3# Interviewer who provided the feedback.
4author: User!
5
6# Overall notes about the candidate.
7notes: String!
8
9categories: [InterviewerFeedbackCategory]
10
11recommendedLevel: String
12
13overallEvaluation: InterviewerFeedbackOverallEvaluation @deprecated( reason: "Use 'evaluation'." )
14
15evaluation: String
16
17}