OBJECT

CompanyTestSession

A session of a company test.

link GraphQL Schema definition

1type CompanyTestSession implements TestSession {
2
3id: ID!
4
5# Associated company test from which this test session was created.
6test: CompanyTest
7
8status: TestSessionStatus!
9
10testTaker: TestTaker!
11
12maxScore: Int!
13
14# When the test session was created.
15createDate: Timestamp
16
17# When the test-taker actually began the test session.
18startDate: Timestamp
19
20# When the invitation will expire if the session does not begin.
21expirationDate: Timestamp
22
23# When the test-taker completed the test session.
24finishDate: Timestamp
25
26# The test-taker's feedback after completing the test session.
27feedback: TestSessionFeedback @deprecated( reason: "Will be replaced with queryable aggregate feedback in the future." )
28
29result: CompanyTestSessionResult
30
31tasks: [TestSessionTask]!
32
33sender: User
34
35# The count of questions.
36taskCount: Int
37
38# Arguments
39# taskId: Unique questions ID.
40task(taskId: ID): TestSessionTask
41
42# The URL the candidate can follow to take the assessment.
43invitationUrl: String
44
45# Test session labels
46labels: [String]!
47
48# ATS integrations
49integrations: Integrations
50
51# Overridden duration of the test.
52customDuration: Float
53
54# Reminders that will be sent to invitees who have not yet completed a test
55# session.
56emailReminders: [TestSessionReminder!]
57
58# If this test session was reactivated, this field will contain information about
59# the new test session.
60reactivatedSession: ReactivatedSession
61
62# Proctoring status of the test session once it's been submitted.
63verificationStatus: VerificationStatus
64
65# Indicates whether the system is finished with analyzing test session for
66# suspicious activity.
67integrityReviewFinalized: Boolean!
68
69# Indicates whether the system detected potential suspicious activity for the test
70# session.
71# Will be present only for non-proctored screens if the system was able to analyze
72# the test session successfully.
73integrityReviewSuggested: Boolean
74
75# The new test session after a retake was issued.
76retakeSession: CompanyTestSession
77
78}