OBJECT
CompanyTestSession
A session of a company test.
link GraphQL Schema definition
1 type CompanyTestSession implements TestSession { 2 3 : ID! 4 5 # Associated company test from which this test session was created. 6 : CompanyTest 7 8 : TestSessionStatus! 9 10 : TestTaker! 11 12 : Int! 13 14 # When the test session was created. 15 : Timestamp 16 17 # When the test-taker actually began the test session. 18 : Timestamp 19 20 # When the invitation will expire if the session does not begin. 21 : Timestamp 22 23 # When the test-taker completed the test session. 24 : Timestamp 25 26 # The test-taker's feedback after completing the test session. 27 : TestSessionFeedback @deprecated( reason: "Will be replaced with queryable aggregate feedback in the future." ) 28 29 : CompanyTestSessionResult 30 31 : [TestSessionTask]! 32 33 : User 34 35 # The count of questions. 36 : Int 37 38 # Arguments 39 # taskId: Unique questions ID. 40 (: ID): TestSessionTask 41 42 # Unique ID of the public invitation used by the candidate. 43 : ID 44 45 # The URL the candidate can follow to take the assessment. 46 : String 47 48 # Test session labels 49 : [String]! 50 51 # ATS integrations 52 : Integrations 53 54 # Overridden duration of the test. 55 : Float 56 57 # Reminders that will be sent to invitees who have not yet completed a test 58 # session. 59 : [TestSessionReminder!] 60 61 # If this test session was reactivated, this field will contain information about 62 # the new test session. 63 : ReactivatedSession 64 65 # Proctoring status of the test session once it's been submitted. 66 : VerificationStatus 67 68 # [*Internal use only*] 69 # Verification notes for the test session. 70 : String! 71 72 # If verificationStatus is notVerified, the list of human-readable rejection 73 # reasons 74 # with both short name and long description. 75 # Returns null otherwise. 76 : [VerificationRejectionReason!] 77 78 # Indicates whether the system is finished with analyzing test session for 79 # suspicious activity. 80 : Boolean! 81 82 # Indicates whether the system detected potential suspicious activity for the test 83 # session. 84 # Will be present only for non-proctored screens if the system was able to analyze 85 # the test session successfully. 86 : Boolean 87 88 # The new test session after a retake was issued. 89 : CompanyTestSession 90 91 }