OBJECT
StandardizedTestSession
A session of a standardized test.
link GraphQL Schema definition
1 type StandardizedTestSession implements TestSession { 2 3 ID! : 4 5 # Associated company test from which this test session was created. 6 StandardizedTest : 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 test-taker completed the test session. 21 Timestamp : 22 23 # The test-taker's feedback after completing the test session. 24 TestSessionFeedback @deprecated( reason: "Will be replaced with queryable aggregate feedback in the future." ) : 25 26 StandardizedTestSessionResult : 27 28 TestSessionTask]! : [ 29 30 # The count of tasks. 31 Int : 32 33 # Arguments 34 # taskId: Unique question ID. 35 ID): TestSessionTask ( : 36 37 # Test session labels 38 String]! : [ 39 40 # Overridden duration of the test. 41 Float : 42 43 # Proctoring status of the test session once it's been submitted. 44 VerificationStatus : 45 46 }