INTERFACE
TestSession
A session of a test.
link GraphQL Schema definition
1 interface TestSession { 2 3 ID! : 4 5 # Associated test from which this test session was created. 6 # 7 # - Cost complexity: 1 8 Test : 9 10 TestSessionStatus! : 11 12 TestTaker! : 13 14 Int! : 15 16 # When the test session was created. 17 Timestamp : 18 19 # When the test-taker actually began the test session. 20 Timestamp : 21 22 # When the test-taker completed the test session. 23 Timestamp : 24 25 # When the invitation will expire if the session does not begin. 26 Timestamp : 27 28 # The test-taker's feedback after completing the test session. 29 TestSessionFeedback @deprecated( reason: "Will be replaced with queryable aggregate feedback in the future." ) : 30 31 TestSessionResult : 32 33 # - Cost complexity: 2 34 TestSessionTask]! : [ 35 36 # The count of questions. 37 Int : 38 39 # - Cost complexity: 1 40 # 41 # Arguments 42 # taskId: Unique question ID. 43 ID): TestSessionTask ( : 44 45 # Test session labels 46 String]! : [ 47 48 # Overridden duration of the test. 49 Float : 50 51 # Proctoring status of the test session once it's been submitted. 52 VerificationStatus : 53 54 # The new test session after a retake was issued. 55 TestSession : 56 57 }