OBJECT
LiveInterview
A live interview defines a collaboration programming session.
link GraphQL Schema definition
1 type LiveInterview { 2 3 # Live interview ID. 4 ID! : 5 6 # Email of the candidate. 7 String : 8 9 # Full name of the candidate. 10 String : 11 12 # Status of the live interview. 13 LiveInterviewStatus! : 14 15 # Interviewer's feedback about the candidate. 16 LiveInterviewFeedback : 17 18 # The date the interview started. 19 Timestamp : 20 21 # The date the interview finished. 22 Timestamp : 23 24 # Direct link to the interview. 25 String! : 26 27 # The company that owns this live interview. 28 # 29 # - Cost complexity: 1 30 Company! : 31 32 }