OBJECT
StandardizedTestSessionResult
The result of a completed standardized test session.
link GraphQL Schema definition
1 type StandardizedTestSessionResult implements TestSessionResult { 2 3 # The numeric score the test-taker achieved, out of the total max score of the 4 # test session. 5 Int : 6 7 # The number of tasks that the test-taker solved. 8 Int : 9 10 # A list of test-taker's result per task. 11 # 12 # - Cost complexity: 3 13 TestSessionTaskResult]! : [ 14 15 # Result of an individual task. Either taskId or ID needs to be provided, but not 16 # both. 17 # 18 # - Cost complexity: 1 19 # 20 # Arguments 21 # taskId: The ID of the task. 22 # id: The ID of user's solution. 23 ID, : ID): TestSessionTaskResult ( : 24 25 # Url to access the test session result. 26 String : 27 28 # Certification status of certification test sessions. 29 CertificationStatus : 30 31 # Standardized coding score in range of 300 to 850 32 CodingScore : 33 34 }